summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/immutable/ListSet.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/ListSet.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/ListSet.scala')
-rw-r--r--src/library/scala/collection/immutable/ListSet.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library/scala/collection/immutable/ListSet.scala b/src/library/scala/collection/immutable/ListSet.scala
index 3863c16591..f7b76d2317 100644
--- a/src/library/scala/collection/immutable/ListSet.scala
+++ b/src/library/scala/collection/immutable/ListSet.scala
@@ -85,6 +85,8 @@ class ListSet[A] extends Set[A]
*/
protected def next: ListSet[A] = throw new NoSuchElementException("Next of an empty set");
+ /** Represents an entry in the `ListSet`.
+ */
@serializable
protected class Node(override protected val elem: A) extends ListSet[A] {