summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/immutable/SortedSet.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-09 12:25:37 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-09 12:25:37 +0000
commit9bed3788ba35621514fcb7afc18526a6dc9c3dda (patch)
tree4156dbebf39fbc444bbc28e40050492c0870636a /src/library/scala/collection/immutable/SortedSet.scala
parent2ff464685fd13cf0489b0cdece98beaba283b675 (diff)
downloadscala-9bed3788ba35621514fcb7afc18526a6dc9c3dda.tar.gz
scala-9bed3788ba35621514fcb7afc18526a6dc9c3dda.tar.bz2
scala-9bed3788ba35621514fcb7afc18526a6dc9c3dda.zip
Changes to docs of collections in the `immutabl...
Changes to docs of collections in the `immutable` package. Review by odersky.
Diffstat (limited to 'src/library/scala/collection/immutable/SortedSet.scala')
-rw-r--r--src/library/scala/collection/immutable/SortedSet.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/library/scala/collection/immutable/SortedSet.scala b/src/library/scala/collection/immutable/SortedSet.scala
index 9d0b1882fa..10ff466ff8 100644
--- a/src/library/scala/collection/immutable/SortedSet.scala
+++ b/src/library/scala/collection/immutable/SortedSet.scala
@@ -15,7 +15,8 @@ package immutable
import generic._
import mutable.Builder
-/** A sorted set.
+/** A subtrait of `collection.SortedSet` which represents sorted sets
+ * which cannot be mutated.
*
* @author Sean McDirmid
* @author Martin Odersky
@@ -28,6 +29,8 @@ trait SortedSet[A] extends Set[A] with scala.collection.SortedSet[A] with Sorted
}
/**
+ * A companion object for immutable sorted sets.
+ *
* @since 2.4
*/
object SortedSet extends ImmutableSortedSetFactory[SortedSet] {