summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2010-08-07 09:25:42 +0000
committermichelou <michelou@epfl.ch>2010-08-07 09:25:42 +0000
commitf36ea69f64ef5c6024944ba9a7cecca2eb3e9af4 (patch)
tree4a0f2c2c1ef049813d10d6fdcc726834f8964177
parent0d7f67df7007e274c16a0d6914888e53de29f35a (diff)
downloadscala-f36ea69f64ef5c6024944ba9a7cecca2eb3e9af4.tar.gz
scala-f36ea69f64ef5c6024944ba9a7cecca2eb3e9af4.tar.bz2
scala-f36ea69f64ef5c6024944ba9a7cecca2eb3e9af4.zip
fixed t3738
-rw-r--r--src/library/scala/collection/MapLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/MapLike.scala b/src/library/scala/collection/MapLike.scala
index fdaee64fd5..ebf95dde81 100644
--- a/src/library/scala/collection/MapLike.scala
+++ b/src/library/scala/collection/MapLike.scala
@@ -283,7 +283,7 @@ self =>
* @param kvs the collection containing the added key/value pairs
* @tparam B1 the type of the added values
* @return a new map with the given bindings added to this map
- * @usecase def + (kvs: Traversable[(A, B)]): Map[A, B]
+ * @usecase def ++ (xs: Traversable[(A, B)]): Map[A, B]
*/
def ++[B1 >: B](xs: TraversableOnce[(A, B1)]): Map[A, B1] =
((repr: Map[A, B1]) /: xs) (_ + _)