summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2004-04-23 08:18:49 +0000
committermichelou <michelou@epfl.ch>2004-04-23 08:18:49 +0000
commit2a3901a6572841a8e01c2b864486f374a1989c05 (patch)
treeb90a8d58305a078c69690b3b8cda810ed34de523
parent09ce120614b6dcf4de255f1d33ec90d2498c2256 (diff)
downloadscala-2a3901a6572841a8e01c2b864486f374a1989c05.tar.gz
scala-2a3901a6572841a8e01c2b864486f374a1989c05.tar.bz2
scala-2a3901a6572841a8e01c2b864486f374a1989c05.zip
- corrected typo in commment.
-rw-r--r--sources/scala/List.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/scala/List.scala b/sources/scala/List.scala
index d0c61f78d0..b11c6d688a 100644
--- a/sources/scala/List.scala
+++ b/sources/scala/List.scala
@@ -497,11 +497,12 @@ trait List[+a] extends Seq[a] {
};
/** Sort the list according to the comparison function
- * <code>&lt;(e1: a, e2: a) =&gt; Booleani</code>,
+ * <code>&lt;(e1: a, e2: a) =&gt; Boolean</code>,
* which should be true iff e1 is smaller than e2.
* Note: The current implementation is inefficent for
* already sorted lists.
*
+ * @param lt the comparison function
* @return a list sorted according to the comparison function
* <code>&lt;(e1: a, e2: a) =&gt; Boolean</code>.
*/