spelling: semantics

This commit is contained in:
Josh Soref 2017-01-20 08:28:56 +00:00
parent b2d7525b59
commit 35b55abf0c
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ object Scoped {
}
/**
* Wraps an [[sbt.Def.Initialize]] instance to provide `map` and `flatMap` symantics.
* Wraps an [[sbt.Def.Initialize]] instance to provide `map` and `flatMap` semantics.
*/
final class RichInitialize[S](init: Initialize[S]) {
def map[T](f: S => T): Initialize[Task[T]] = init(s => mktask(f(s)))