mirror of https://github.com/sbt/sbt.git
Merge pull request #1425 from jaceklaskowski/typo-fixes
Typo fixes + removing unnecessary semicolons
This commit is contained in:
commit
e0f2d212df
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue