summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/WeakHashMap.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-29 18:41:08 +0000
committerPaul Phillips <paulp@improving.org>2011-03-29 18:41:08 +0000
commit1caac54694602ad5ae48c3cbb8394b7263b132e4 (patch)
tree0bc088a7c6c971bc1c0b58fd8ffdcee9cfe77054 /src/library/scala/collection/mutable/WeakHashMap.scala
parent71d2aba0428541d4109ec3c34b479fe69ebb2205 (diff)
downloadscala-1caac54694602ad5ae48c3cbb8394b7263b132e4.tar.gz
scala-1caac54694602ad5ae48c3cbb8394b7263b132e4.tar.bz2
scala-1caac54694602ad5ae48c3cbb8394b7263b132e4.zip
A bunch of scaladoc cleanups.
the wrong places, tags saying the wrong thing. I sorted types and values so deprecated ones are at the end. I think they should be hidden by default, but this is a big improvement. Leaving #3914 open so they can be made invisible. No review.
Diffstat (limited to 'src/library/scala/collection/mutable/WeakHashMap.scala')
-rw-r--r--src/library/scala/collection/mutable/WeakHashMap.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/WeakHashMap.scala b/src/library/scala/collection/mutable/WeakHashMap.scala
index 3e6366dbd0..be2daa05ce 100644
--- a/src/library/scala/collection/mutable/WeakHashMap.scala
+++ b/src/library/scala/collection/mutable/WeakHashMap.scala
@@ -30,7 +30,7 @@ import generic._
* pairs of type `(A, B)`. This is because an implicit of type `CanBuildFrom[WeakHashMap, (A, B), WeakHashMap[A, B]]`
* is defined in object `WeakHashMap`. Otherwise, `That` resolves to the most specific type that doesn't have
* to contain pairs of type `(A, B)`, which is `Iterable`.
- * @define $bfinfo an implicit value of class `CanBuildFrom` which determines the
+ * @define bfinfo an implicit value of class `CanBuildFrom` which determines the
* result class `That` from the current representation type `Repr`
* and the new element type `B`. This is usually the `canBuildFrom` value
* defined in object `WeakHashMap`.