summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/immutable/IntMap.scala
diff options
context:
space:
mode:
authorxuwei-k <6b656e6a69@gmail.com>2013-11-15 16:20:48 +0900
committerxuwei-k <6b656e6a69@gmail.com>2013-11-15 16:29:43 +0900
commit5b7e0d26db2847d1d3e78bce0108d9fc77f37c1c (patch)
treeae0e4823d6677908b0b1b6d0029e4f28e552c57a /src/library/scala/collection/immutable/IntMap.scala
parentab77f2af52b41f70f161891be51d8737b9086d53 (diff)
downloadscala-5b7e0d26db2847d1d3e78bce0108d9fc77f37c1c.tar.gz
scala-5b7e0d26db2847d1d3e78bce0108d9fc77f37c1c.tar.bz2
scala-5b7e0d26db2847d1d3e78bce0108d9fc77f37c1c.zip
fix IntMap#foreachValue and LongMap#foreachValue scaladoc
Diffstat (limited to 'src/library/scala/collection/immutable/IntMap.scala')
-rw-r--r--src/library/scala/collection/immutable/IntMap.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/immutable/IntMap.scala b/src/library/scala/collection/immutable/IntMap.scala
index 07e2ddaae2..8991d0b75a 100644
--- a/src/library/scala/collection/immutable/IntMap.scala
+++ b/src/library/scala/collection/immutable/IntMap.scala
@@ -213,7 +213,7 @@ sealed abstract class IntMap[+T] extends AbstractMap[Int, T]
}
/**
- * Loop over the keys of the map. The same as `keys.foreach(f)`, but may
+ * Loop over the values of the map. The same as `values.foreach(f)`, but may
* be more efficient.
*
* @param f The loop body