summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 }