summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorstepancheg <stepancheg@epfl.ch>2008-06-28 14:56:55 +0000
committerstepancheg <stepancheg@epfl.ch>2008-06-28 14:56:55 +0000
commitacfecf590224238c0046f778aac556c3e75324a9 (patch)
tree9849f54ba25ffad0ae311b35f09c63477f8de819 /src
parenta8552fcc43b4e8b21252c92745f564aded1c736f (diff)
downloadscala-acfecf590224238c0046f778aac556c3e75324a9.tar.gz
scala-acfecf590224238c0046f778aac556c3e75324a9.tar.bz2
scala-acfecf590224238c0046f778aac556c3e75324a9.zip
mutable.Set: fix scaladoc param names
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/mutable/Set.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/mutable/Set.scala b/src/library/scala/collection/mutable/Set.scala
index 4b4c4d39f9..90868fb9e3 100644
--- a/src/library/scala/collection/mutable/Set.scala
+++ b/src/library/scala/collection/mutable/Set.scala
@@ -57,8 +57,8 @@ trait Set[A] extends collection.Set[A] with Scriptable[Message[A]] with Cloneabl
/** Add two or more elements to this set.
* @param elem1 the first element.
- * @param kv2 the second element.
- * @param kvs the remaining elements.
+ * @param elem2 the second element.
+ * @param elems the remaining elements.
*/
def += (elem1: A, elem2: A, elems: A*) { this += elem1; this += elem2; this ++= elems }