summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/library')
-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 =:= {