From 1db6f7f3164c7a86d7ab9fa647d38c8cda600feb Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Fri, 20 Mar 2015 16:12:20 +0000 Subject: [PATCH] s/remove/removed/ --- main/settings/src/main/scala/sbt/Remove.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/settings/src/main/scala/sbt/Remove.scala b/main/settings/src/main/scala/sbt/Remove.scala index 6a555d34a..83184a056 100644 --- a/main/settings/src/main/scala/sbt/Remove.scala +++ b/main/settings/src/main/scala/sbt/Remove.scala @@ -3,11 +3,11 @@ package sbt import scala.annotation.implicitNotFound object Remove { - @implicitNotFound(msg = "No implicit for Remove.Value[${A}, ${B}] found,\n so ${B} cannot be remove from ${A}") + @implicitNotFound(msg = "No implicit for Remove.Value[${A}, ${B}] found,\n so ${B} cannot be removed from ${A}") trait Value[A, B] extends Any { def removeValue(a: A, b: B): A } - @implicitNotFound(msg = "No implicit for Remove.Values[${A}, ${B}] found,\n so ${B} cannot be remove from ${A}") + @implicitNotFound(msg = "No implicit for Remove.Values[${A}, ${B}] found,\n so ${B} cannot be removed from ${A}") trait Values[A, -B] extends Any { def removeValues(a: A, b: B): A }