summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/LinkedList.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/LinkedList.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/LinkedList.scala')
-rw-r--r--src/library/scala/collection/mutable/LinkedList.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/LinkedList.scala b/src/library/scala/collection/mutable/LinkedList.scala
index 6c5bf9ae49..b701a42596 100644
--- a/src/library/scala/collection/mutable/LinkedList.scala
+++ b/src/library/scala/collection/mutable/LinkedList.scala
@@ -28,7 +28,7 @@ import generic._
* @define thatinfo the class of the returned collection. In the standard library configuration,
* `That` is always `LinkedList[B]` because an implicit of type `CanBuildFrom[LinkedList, B, LinkedList[B]]`
* is defined in object `LinkedList`.
- * @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 `LinkedList`.