s/remove/removed/

This commit is contained in:
Dale Wijnand 2015-03-20 16:12:20 +00:00
parent ae193d568f
commit 1db6f7f316
1 changed files with 2 additions and 2 deletions

View File

@ -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
}