File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ abstract class Any {
38
38
* - It is reflexive: for any instance `x` of type `Any`, `x.equals(x)` should return `true`.
39
39
* - It is symmetric: for any instances `x` and `y` of type `Any`, `x.equals(y)` should return `true` if and
40
40
* only if `y.equals(x)` returns `true`.
41
- * - It is transitive: for any instances `x`, `y`, and `z` of type `AnyRef ` if `x.equals(y)` returns `true` and
41
+ * - It is transitive: for any instances `x`, `y`, and `z` of type `Any ` if `x.equals(y)` returns `true` and
42
42
* `y.equals(z)` returns `true`, then `x.equals(z)` should return `true`.
43
43
*
44
44
* If you override this method, you should verify that your implementation remains an equivalence relation.
You can’t perform that action at this time.
0 commit comments