From a2b0c264306e28623185f8faa064fef9ee5727dc Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Thu, 14 Jun 2012 23:44:21 +0200 Subject: Removing erronous quoting of implicitNotFound --- src/library/scala/Predef.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/library') diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala index 70c137b30e..99bd7f0736 100644 --- a/src/library/scala/Predef.scala +++ b/src/library/scala/Predef.scala @@ -412,7 +412,7 @@ object Predef extends LowPriorityImplicits { * * In part contributed by Jason Zaugg. */ - @implicitNotFound(msg = "Cannot prove that `${From} <:< ${To}`.") + @implicitNotFound(msg = "Cannot prove that ${From} <:< ${To}.") sealed abstract class <:<[-From, +To] extends (From => To) with Serializable private[this] final val singleton_<:< = new <:<[Any,Any] { def apply(x: Any): Any = x } // not in the <:< companion object because it is also @@ -423,7 +423,7 @@ object Predef extends LowPriorityImplicits { * * @see `<:<` for expressing subtyping constraints */ - @implicitNotFound(msg = "Cannot prove that `${From} =:= ${To}`.") + @implicitNotFound(msg = "Cannot prove that ${From} =:= ${To}.") sealed abstract class =:=[From, To] extends (From => To) with Serializable private[this] final val singleton_=:= = new =:=[Any,Any] { def apply(x: Any): Any = x } object =:= { -- cgit v1.2.3