summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic/ImmutableMapTemplate.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2009-07-07 13:22:17 +0000
committermichelou <michelou@epfl.ch>2009-07-07 13:22:17 +0000
commit99ede604a0a16dc0a63383cd90f8b7d38c4f8fd3 (patch)
tree2ba4101d02338f9b987c20dce5bd4a26a3e901d5 /src/library/scala/collection/generic/ImmutableMapTemplate.scala
parent1eda989ae9d36de1056711eaea93d6470ca400b6 (diff)
downloadscala-99ede604a0a16dc0a63383cd90f8b7d38c4f8fd3.tar.gz
scala-99ede604a0a16dc0a63383cd90f8b7d38c4f8fd3.tar.bz2
scala-99ede604a0a16dc0a63383cd90f8b7d38c4f8fd3.zip
minor change (Scala comments)
Diffstat (limited to 'src/library/scala/collection/generic/ImmutableMapTemplate.scala')
-rw-r--r--src/library/scala/collection/generic/ImmutableMapTemplate.scala10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/library/scala/collection/generic/ImmutableMapTemplate.scala b/src/library/scala/collection/generic/ImmutableMapTemplate.scala
index bf21c26a25..5fbf3fda21 100644
--- a/src/library/scala/collection/generic/ImmutableMapTemplate.scala
+++ b/src/library/scala/collection/generic/ImmutableMapTemplate.scala
@@ -28,7 +28,7 @@ package scala.collection.generic
* <code>filter</code> return the same kind of map, you should also override:
* </p>
* <pre>
- * <b>def</b> empty: This
+ * <b>def</b> empty: This</pre>
* <p>
* It is also good idea to override methods <code>foreach</code> and
* <code>size</code> for efficiency.
@@ -96,9 +96,11 @@ self =>
* <code>p</code> returns <code>true</code>.
*
* @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 will be removed,
- * you might consider using `filter` with a negated predicate instead.
+ * @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$
+ * will be removed, you might consider using <code>filter</code>
+ * with a negated predicate instead.
*/
override def filterNot(p: ((A, B)) => Boolean): This = {
var res: This = thisCollection