summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/MapLike.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-08 13:05:33 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-08 13:05:33 +0000
commita2f3507a56597002f26bbd8d417e6cd7c15481c7 (patch)
tree4faa4480e3c197fb691ef11b3d8e1d19b7fc956c /src/library/scala/collection/MapLike.scala
parentaf6da0b41ead7863216af0aaea83d5463fa93bfd (diff)
downloadscala-a2f3507a56597002f26bbd8d417e6cd7c15481c7.tar.gz
scala-a2f3507a56597002f26bbd8d417e6cd7c15481c7.tar.bz2
scala-a2f3507a56597002f26bbd8d417e6cd7c15481c7.zip
Mostly some undocumented stuff in JavaConversions.
Diffstat (limited to 'src/library/scala/collection/MapLike.scala')
-rw-r--r--src/library/scala/collection/MapLike.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/collection/MapLike.scala b/src/library/scala/collection/MapLike.scala
index 5e1af7a2d7..6a9fffe3e1 100644
--- a/src/library/scala/collection/MapLike.scala
+++ b/src/library/scala/collection/MapLike.scala
@@ -60,7 +60,7 @@ self =>
// note: can't inherit Addable because of variance problems: Map
// is covariant in its value type B, but Addable is nonvariant.
- /* The empty map of the same type as this map
+ /** The empty map of the same type as this map
* @return an empty map of type `This`.
*/
def empty: This
@@ -295,7 +295,7 @@ self =>
* @param p A predicate over key-value pairs
* @note This method works by successively removing elements fro which the
* predicate is false from this set.
- * If removal is slow, or you expect that most elements of the set$
+ * If removal is slow, or you expect that most elements of the set
* will be removed, you might consider using <code>filter</code>
* with a negated predicate instead.
*/
@@ -311,7 +311,7 @@ self =>
* `end`. Inside, the string representations of all bindings of this map
* in the form of `key -> value` are separated by the string `sep`.
*
- * @param b the builder to which strings are appended.
+ * @param b the builder to which strings are appended.
* @param start the starting string.
* @param sep the separator string.
* @param end the ending string.