Skip to content

Commit db6c132

Browse files
committed
Fix doc comment in Eq
1 parent 054ccaa commit db6c132

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scala/Eq.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class Eq[-T]
99
*/
1010
object Eq extends Eq[Any] {
1111

12-
/** An implicit that provides an `Eq` instance for all types `T`
13-
* such that `T <: EqClass[T]`.
12+
/** An implicit that provides an `Eq` instance for all types `T` that have
13+
* a base type `U` such that `U <: EqClass[U]`.
1414
*/
1515
implicit def eqEq[U, T <: EqClassOf[U] with U]: Eq[T] = Eq
1616
}

0 commit comments

Comments
 (0)