summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-07-16 05:52:09 +0000
committerPaul Phillips <paulp@improving.org>2011-07-16 05:52:09 +0000
commit42a2169161189a2391f645b60afc6fe816c732de (patch)
tree1070ab6a890be9a35dceb8c1e974f85a6fbe3026
parent15df85b04760e29e137e6d57f60789d2aba22117 (diff)
downloadscala-42a2169161189a2391f645b60afc6fe816c732de.tar.gz
scala-42a2169161189a2391f645b60afc6fe816c732de.tar.bz2
scala-42a2169161189a2391f645b60afc6fe816c732de.zip
Fix wiki markup of Equiv.scala. From Josh Marcus.
-rw-r--r--src/library/scala/math/Equiv.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/library/scala/math/Equiv.scala b/src/library/scala/math/Equiv.scala
index ac3a3017f2..92a794578e 100644
--- a/src/library/scala/math/Equiv.scala
+++ b/src/library/scala/math/Equiv.scala
@@ -19,10 +19,10 @@ import java.util.Comparator
* is a binary relation on a type. This relation is exposed as
* the `equiv` method of the `Equiv` trait. The relation must be:
*
- * 1. reflexive: `equiv(x, x) == true` for any x of type `T`.
- * 1. symmetric: `equiv(x, y) == equiv(y, x)` for any `x` and `y` of type `T`.
- * 1. transitive: if `equiv(x, y) == true` and `equiv(y, z) == true`, then
- * `equiv(x, z) == true` for any `x`, `y`, and `z` of type `T`.
+ * 1. reflexive: `equiv(x, x) == true` for any x of type `T`.
+ * 1. symmetric: `equiv(x, y) == equiv(y, x)` for any `x` and `y` of type `T`.
+ * 1. transitive: if `equiv(x, y) == true` and `equiv(y, z) == true`, then
+ * `equiv(x, z) == true` for any `x`, `y`, and `z` of type `T`.
*
* @author Geoffrey Washburn, Paul Phillips
* @version 1.0, 2008-04-03