Merge pull request #1425 from jaceklaskowski/typo-fixes

Typo fixes + removing unnecessary semicolons
This commit is contained in:
eugene yokota 2014-06-24 22:58:59 -04:00
commit e0f2d212df
2 changed files with 3 additions and 3 deletions

View File

@ -24,14 +24,14 @@ object Configurations {
case _ => c
}
def internal(base: Configuration, ext: Configuration*) = config(base.name + "-internal") extend (ext: _*) hide;
def internal(base: Configuration, ext: Configuration*) = config(base.name + "-internal") extend (ext: _*) hide
def fullInternal(base: Configuration): Configuration = internal(base, base, Optional, Provided)
def optionalInternal(base: Configuration): Configuration = internal(base, base, Optional)
lazy val Default = config("default")
lazy val Compile = config("compile")
lazy val IntegrationTest = config("it") extend (Runtime)
lazy val Provided = config("provided");
lazy val Provided = config("provided")
lazy val Docs = config("docs")
lazy val Runtime = config("runtime") extend (Compile)
lazy val Test = config("test") extend (Runtime)

View File

@ -228,7 +228,7 @@ object Resolver {
object sftp extends Define[SftpRepository] {
protected def construct(name: String, connection: SshConnection, patterns: Patterns) = SftpRepository(name, connection, patterns)
}
/** A factory to construct an interface to an Ivy filesytem resolver. */
/** A factory to construct an interface to an Ivy filesystem resolver. */
object file {
/**
* Constructs a file resolver with the given name. The patterns to use must be explicitly specified