This commit is contained in:
xuwei-k 2022-05-22 10:48:48 +09:00 committed by kenji yoshida
parent 3a9a384035
commit f6ff6996a5
5 changed files with 6 additions and 6 deletions

View File

@ -75,7 +75,7 @@ private[sbt] object UITask {
this.synchronized(this.wait())
Right("") // should be unreachable
// JLine returns null on ctrl+d when there is no other input. This interprets
// ctrl+d with no imput as an exit
// ctrl+d with no input as an exit
case None => Left(TerminateAction)
case Some(s: String) =>
s.trim() match {

View File

@ -44,7 +44,7 @@ abstract class BackgroundJobService extends Closeable {
start(logger, file)._2.apply()
}
/** Same as shutown. */
/** Same as shutdown. */
def close(): Unit
/** Shuts down all background jobs. */

View File

@ -4387,7 +4387,7 @@ trait BuildExtra extends BuildCommon with DefExtra {
}
@deprecated(
"externalIvyFile is not supported by Couriser, and will be removed in the future",
"externalIvyFile is not supported by Coursier, and will be removed in the future",
since = "1.5.0"
)
def externalIvyFile(

View File

@ -18,12 +18,12 @@ trait UpperStateOps extends Any {
/**
* ProjectRef to the current project of the state session that can be change using
* `project` commmand.
* `project` command.
*/
def currentRef: ProjectRef
/**
* Current project of the state session that can be change using `project` commmand.
* Current project of the state session that can be change using `project` command.
*/
def currentProject: ResolvedProject

View File

@ -259,7 +259,7 @@ private[sbt] object Settings {
* Provides an automatically generated clean method for a task that provides fileOutputs.
*
* @param taskKey the task for which we add a custom clean implementation
* @return a task specificic clean implementation
* @return a task specific clean implementation
*/
@nowarn
private[sbt] def cleanImpl[T: JsonFormat: ToSeqPath](taskKey: TaskKey[T]): Def.Setting[_] = {