summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/SetLike.scala
diff options
context:
space:
mode:
authorRex Kerr <ichoran@gmail.com>2014-06-27 19:56:17 -0700
committerRex Kerr <ichoran@gmail.com>2014-06-27 19:56:17 -0700
commit23ae5c48b3c647361a63373c4f967022351d99dc (patch)
tree2574b1136d36802b4cca05c0e256f64981f12e16 /src/library/scala/collection/SetLike.scala
parentfbfce33cb03bc2b41dd0f46fa9f4630036b4f2ca (diff)
downloadscala-23ae5c48b3c647361a63373c4f967022351d99dc.tar.gz
scala-23ae5c48b3c647361a63373c4f967022351d99dc.tar.bz2
scala-23ae5c48b3c647361a63373c4f967022351d99dc.zip
SI-5200 Incorrect advice for implementing mutable.Set in scaladoc
Fixed advice; it was already there in mutable.SetLike but a case sensitivity error kept it from appearing.
Diffstat (limited to 'src/library/scala/collection/SetLike.scala')
-rw-r--r--src/library/scala/collection/SetLike.scala7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/library/scala/collection/SetLike.scala b/src/library/scala/collection/SetLike.scala
index 0c5c7e0b29..3e549f72cd 100644
--- a/src/library/scala/collection/SetLike.scala
+++ b/src/library/scala/collection/SetLike.scala
@@ -17,6 +17,9 @@ import parallel.ParSet
/** A template trait for sets.
*
* $setNote
+ * '''Implementation note:'''
+ * This trait provides most of the operations of a `Set` independently of its representation.
+ * It is typically inherited by concrete implementations of sets.
* $setTags
* @since 2.8
*
@@ -24,10 +27,6 @@ import parallel.ParSet
*
* A set is a collection that contains no duplicate elements.
*
- * '''Implementation note:'''
- * This trait provides most of the operations of a `Set` independently of its representation.
- * It is typically inherited by concrete implementations of sets.
- *
* To implement a concrete set, you need to provide implementations of the
* following methods:
* {{{