summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkurnevsky <kurnevsky@gmail.com>2014-04-08 20:40:31 +0300
committerkurnevsky <kurnevsky@gmail.com>2014-04-08 20:40:31 +0300
commit03fc28785c56475cd9774966a1c63fed7d241f88 (patch)
treedef969229ba8255e67953c1692cbe78a2b9f45de
parent470a51285b686b0f0e0149d1741f76b03ecab310 (diff)
downloadscala-03fc28785c56475cd9774966a1c63fed7d241f88.tar.gz
scala-03fc28785c56475cd9774966a1c63fed7d241f88.tar.bz2
scala-03fc28785c56475cd9774966a1c63fed7d241f88.zip
Correction in the documentation.
-rw-r--r--src/library/scala/collection/generic/Sorted.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/library/scala/collection/generic/Sorted.scala b/src/library/scala/collection/generic/Sorted.scala
index ab0d443a03..a0b0e1318b 100644
--- a/src/library/scala/collection/generic/Sorted.scala
+++ b/src/library/scala/collection/generic/Sorted.scala
@@ -62,7 +62,8 @@ trait Sorted[K, +This <: Sorted[K, This]] {
/** Creates a ranged projection of this collection with both a lower-bound
* and an upper-bound.
*
- * @param from The upper-bound (exclusive) of the ranged projection.
+ * @param from The lower-bound (inclusive) of the ranged projection.
+ * @param until The upper-bound (exclusive) of the ranged projection.
*/
def range(from: K, until: K): This = rangeImpl(Some(from), Some(until))