summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Klang <viktor.klang@gmail.com>2012-06-14 23:44:21 +0200
committerViktor Klang <viktor.klang@gmail.com>2012-06-14 23:44:21 +0200
commita2b0c264306e28623185f8faa064fef9ee5727dc (patch)
treedf74883eb6e7d6a3d5dea000f713580b895394f3
parentd6a184fc201df285eee7f5eae1da56638066c1fd (diff)
downloadscala-a2b0c264306e28623185f8faa064fef9ee5727dc.tar.gz
scala-a2b0c264306e28623185f8faa064fef9ee5727dc.tar.bz2
scala-a2b0c264306e28623185f8faa064fef9ee5727dc.zip
Removing erronous quoting of implicitNotFound
-rw-r--r--src/library/scala/Predef.scala4
1 files changed, 2 insertions, 2 deletions
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 =:= {