summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-03-19 08:53:03 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-03-19 08:53:03 +0000
commit37a34b327f315ee2ca023ebf675e50c2192fa4ae (patch)
tree9dc55c5a6143924de88f417759bad96b8da776a3
parent8177b1fbfd1630f20c7704b319cc7c3536edec10 (diff)
downloadscala-37a34b327f315ee2ca023ebf675e50c2192fa4ae.tar.gz
scala-37a34b327f315ee2ca023ebf675e50c2192fa4ae.tar.bz2
scala-37a34b327f315ee2ca023ebf675e50c2192fa4ae.zip
Fixed comment added keywords.
-rw-r--r--src/library/scala/Equiv.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/library/scala/Equiv.scala b/src/library/scala/Equiv.scala
index 32154900e4..bcbaf26c8b 100644
--- a/src/library/scala/Equiv.scala
+++ b/src/library/scala/Equiv.scala
@@ -17,9 +17,8 @@ package scala
trait Equiv[T] {
/** Returns <code>true</code> iff <code>x</code> is equivalent to
- /** <code>y</code>. The implementation
- /* should be equivalence relation: reflexive, transitive,
- /* symmetric.
+ * <code>y</code>. The implementation should be equivalence
+ * relation: reflexive, transitive, symmetric.
*/
def equiv(x: T, y: T): Boolean
}