summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic/Sorted.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/generic/Sorted.scala')
-rw-r--r--src/library/scala/collection/generic/Sorted.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/library/scala/collection/generic/Sorted.scala b/src/library/scala/collection/generic/Sorted.scala
index 3876da3275..ab0d443a03 100644
--- a/src/library/scala/collection/generic/Sorted.scala
+++ b/src/library/scala/collection/generic/Sorted.scala
@@ -79,14 +79,14 @@ trait Sorted[K, +This <: Sorted[K, This]] {
else
until(next)
}
-
+
/**
* Creates an iterator over all the keys(or elements) contained in this
* collection greater than or equal to `start`
- * according to the ordering of this collection. x.keysIteratorFrom(y)
- * is equivalent to but often more efficient than
+ * according to the ordering of this collection. x.keysIteratorFrom(y)
+ * is equivalent to but often more efficient than
* x.from(y).keysIterator.
- *
+ *
* @param start The lower bound (inclusive)
* on the keys to be returned
*/