Merge pull request #4308 from seratch/fix-typos

Fix the several typos detected by github.com/client9/misspell
This commit is contained in:
eugene yokota
2018-08-15 10:51:03 -04:00
committed by GitHub
10 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ object Tags {
/** Returns a Rule that limits the maximum number of concurrently executing tasks without a tag to `max`. */
def limitUntagged(max: Int): Rule = limit(Untagged, max)
/** Returns a Rule that limits the maximum number of concurrent executings tasks tagged with `tag` to `max`.*/
/** Returns a Rule that limits the maximum number of concurrent executing tasks tagged with `tag` to `max`.*/
def limit(tag: Tag, max: Int): Rule = new Single(tag, max)
def limitSum(max: Int, tags: Tag*): Rule = new Sum(tags, max)
@@ -20,7 +20,7 @@ import TaskName._
* - -Dsbt.task.timings.on.shutdown=true|false
* - -Dsbt.task.timings.unit=number
* - -Dsbt.task.timings.threshold=number
* @param shutdown Should the report be given when exiting the JVM (true) or immediatelly (false)?
* @param shutdown Should the report be given when exiting the JVM (true) or immediately (false)?
*/
private[sbt] final class TaskTimings(shutdown: Boolean) extends ExecuteProgress[Task] {
private[this] val calledBy = new ConcurrentHashMap[Task[_], Task[_]]