From acfecf590224238c0046f778aac556c3e75324a9 Mon Sep 17 00:00:00 2001 From: stepancheg Date: Sat, 28 Jun 2008 14:56:55 +0000 Subject: mutable.Set: fix scaladoc param names --- src/library/scala/collection/mutable/Set.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 } -- cgit v1.2.3