From 840dabf6b56c6f9ca4761bfaf8d7fae372d5a1b7 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 20 Jan 2017 08:17:44 +0000 Subject: [PATCH] spelling: implementation --- main-settings/src/main/scala/sbt/Previous.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main-settings/src/main/scala/sbt/Previous.scala b/main-settings/src/main/scala/sbt/Previous.scala index 082f674f9..215f1e158 100644 --- a/main-settings/src/main/scala/sbt/Previous.scala +++ b/main-settings/src/main/scala/sbt/Previous.scala @@ -25,7 +25,7 @@ private[sbt] final class Previous(streams: Streams, referenced: IMap[ScopedTaskK } } - /** Used by the .previous runtime implemention to get the previous value for task `key`. */ + /** Used by the .previous runtime implementation to get the previous value for task `key`. */ private def get[T](key: ScopedKey[Task[T]]): Option[T] = map.get(key).flatMap(_.previousValue) }