summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/FlatHashTable.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/FlatHashTable.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/FlatHashTable.scala')
-rw-r--r--src/library/scala/collection/mutable/FlatHashTable.scala7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/library/scala/collection/mutable/FlatHashTable.scala b/src/library/scala/collection/mutable/FlatHashTable.scala
index 48386c8034..d78c466f69 100644
--- a/src/library/scala/collection/mutable/FlatHashTable.scala
+++ b/src/library/scala/collection/mutable/FlatHashTable.scala
@@ -16,13 +16,10 @@ package mutable
* This trait is used internally. It can be mixed in with various collections relying on
* hash table as an implementation.
*
- * @coll flat hash table
- *
+ * @define coll flat hash table
* @define cannotStoreNull '''Note''': A $coll cannot store `null` elements.
- *
* @since 2.3
- *
- * @tparam A the type of the elements contained in the flat hash table.
+ * @tparam A the type of the elements contained in the $coll.
*/
trait FlatHashTable[A] extends FlatHashTable.HashUtils[A] {
import FlatHashTable._