summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2009-11-04 17:36:42 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2009-11-04 17:36:42 +0000
commitdbf0e12c15a0c0f3ac8833ecf70d0228ab0f1c3e (patch)
tree32e9ec03e3140c895ecf3ebe6541866dc919d801 /src/library
parent1f075b56f8d727e4e1b924f8a4e464522fc26abc (diff)
downloadscala-dbf0e12c15a0c0f3ac8833ecf70d0228ab0f1c3e.tar.gz
scala-dbf0e12c15a0c0f3ac8833ecf70d0228ab0f1c3e.tar.bz2
scala-dbf0e12c15a0c0f3ac8833ecf70d0228ab0f1c3e.zip
bit missing
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/SeqLike.scala2
-rw-r--r--src/library/scala/collection/immutable/List.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/SeqLike.scala b/src/library/scala/collection/SeqLike.scala
index 3b7efd11d2..cf88c134f6 100644
--- a/src/library/scala/collection/SeqLike.scala
+++ b/src/library/scala/collection/SeqLike.scala
@@ -530,7 +530,7 @@ trait SeqLike[+A, +Repr] extends IterableLike[A, Repr] { self =>
*
* @param lt the comparison function
* @return a sequence sorted according to the comparison function
- * <code>&lt;(e1: a, e2: a) =&gt; Boolean</code>.
+ * <code>lt(e1: a, e2: a) =&gt; Boolean</code>.
* @ex <pre>
* List("Steve", "Tom", "John", "Bob")
* .sortWith((e1, e2) => (e1 compareTo e2) &lt; 0) =
diff --git a/src/library/scala/collection/immutable/List.scala b/src/library/scala/collection/immutable/List.scala
index c3f3ff6232..1412c8487a 100644
--- a/src/library/scala/collection/immutable/List.scala
+++ b/src/library/scala/collection/immutable/List.scala
@@ -363,7 +363,7 @@ sealed abstract class List[+A] extends LinearSeq[A]
*
* @param lt the comparison function
* @return a list sorted according to the comparison function
- * <code>&lt;(e1: a, e2: a) =&gt; Boolean</code>.
+ * <code>lt(e1: a, e2: a) =&gt; Boolean</code>.
* @ex <pre>
* List("Steve", "Tom", "John", "Bob")
* .sort((e1, e2) => (e1 compareTo e2) &lt; 0) =