aboutsummaryrefslogtreecommitdiff
path: root/src/scala/Eq.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-05-13 14:14:44 +0200
committerMartin Odersky <odersky@gmail.com>2016-05-23 16:11:45 +0200
commit2f3b895a6e97d10fcc3d44bb2be782db9cc6bc68 (patch)
tree1fd58d8388083f212d0a075025a14c41da40cee8 /src/scala/Eq.scala
parent3c1a87b0e4bd7f163485ec3aeb028848ce4c2e43 (diff)
downloaddotty-2f3b895a6e97d10fcc3d44bb2be782db9cc6bc68.tar.gz
dotty-2f3b895a6e97d10fcc3d44bb2be782db9cc6bc68.tar.bz2
dotty-2f3b895a6e97d10fcc3d44bb2be782db9cc6bc68.zip
Fix doc comment
Diffstat (limited to 'src/scala/Eq.scala')
-rw-r--r--src/scala/Eq.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scala/Eq.scala b/src/scala/Eq.scala
index 99d03bbb6..d6d617cab 100644
--- a/src/scala/Eq.scala
+++ b/src/scala/Eq.scala
@@ -2,7 +2,7 @@ package scala
import annotation.implicitNotFound
-/** A marker trait indicating that values of kind `L` can be compared to values of type `R`. */
+/** A marker trait indicating that values of type `L` can be compared to values of type `R`. */
@implicitNotFound("Values of types ${L} and ${R} cannot be compared with == or !=")
sealed trait Eq[-L, -R]