mirror of
https://github.com/sbt/sbt.git
synced 2026-09-08 11:13:23 +02:00
Merge pull request #4308 from seratch/fix-typos
Fix the several typos detected by github.com/client9/misspell
This commit is contained in:
@@ -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[_]]
|
||||
|
||||
Reference in New Issue
Block a user