summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/WeakHashMap.scala
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2012-05-02 02:58:54 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2012-05-02 21:40:29 +0200
commit65b9fec4b1981c3e10c27cd41fd8cac054e7b05c (patch)
tree74860932f183c8f8f4c3d0981fabbcfc664bd588 /src/library/scala/collection/mutable/WeakHashMap.scala
parent90d2bee45b25844f809f8c5300aefcb1bfe9e336 (diff)
downloadscala-65b9fec4b1981c3e10c27cd41fd8cac054e7b05c.tar.gz
scala-65b9fec4b1981c3e10c27cd41fd8cac054e7b05c.tar.bz2
scala-65b9fec4b1981c3e10c27cd41fd8cac054e7b05c.zip
Fixes SI-4478.
- Replaced/simplified usages of "wrt". - Added backticks to $Coll definitions, so stuff like "immutable.Stack" hopefully stops being interpreted as the end of a sentence and shown like that in the summary line of ScalaDoc's method description. See collection.immutable.Stack's sortBy. Additionally, it looks nicer this way. - Fixes the typo mentioned in SI-5666.
Diffstat (limited to 'src/library/scala/collection/mutable/WeakHashMap.scala')
-rw-r--r--src/library/scala/collection/mutable/WeakHashMap.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/mutable/WeakHashMap.scala b/src/library/scala/collection/mutable/WeakHashMap.scala
index 4e09755acf..ec99197bb9 100644
--- a/src/library/scala/collection/mutable/WeakHashMap.scala
+++ b/src/library/scala/collection/mutable/WeakHashMap.scala
@@ -23,7 +23,7 @@ import convert.Wrappers._
* @see [[http://docs.scala-lang.org/overviews/collections/concrete-mutable-collection-classes.html#weak_hash_maps "Scala's Collection Library overview"]]
* section on `Weak Hash Maps` for more information.
*
- * @define Coll WeakHashMap
+ * @define Coll `WeakHashMap`
* @define coll weak hash map
* @define thatinfo the class of the returned collection. In the standard library configuration,
* `That` is always `WeakHashMap[A, B]` if the elements contained in the resulting collection are
@@ -43,7 +43,7 @@ class WeakHashMap[A, B] extends JMapWrapper[A, B](new java.util.WeakHashMap)
}
/** $factoryInfo
- * @define Coll WeakHashMap
+ * @define Coll `WeakHashMap`
* @define coll weak hash map
*/
object WeakHashMap extends MutableMapFactory[WeakHashMap] {