summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/BitSetLike.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2010-04-03 20:13:19 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2010-04-03 20:13:19 +0000
commit86af709d76936e70c4454deceaa1805f751a0d60 (patch)
treef114554e48f28d85e866d24886754bf8ebac77d6 /src/library/scala/collection/BitSetLike.scala
parentd1372c1541ca385a500ec53928aad8b7a9fec7fa (diff)
downloadscala-86af709d76936e70c4454deceaa1805f751a0d60.tar.gz
scala-86af709d76936e70c4454deceaa1805f751a0d60.tar.bz2
scala-86af709d76936e70c4454deceaa1805f751a0d60.zip
[scaladoc] Considerably reduced size of documen...
[scaladoc] Considerably reduced size of documentation by not generating certain strange inner classes. Scaladoc is much much faster (more than 10x on library); not exactly clear why. Protected members are printed in documentation and displayed on demand. Review by malayeri.
Diffstat (limited to 'src/library/scala/collection/BitSetLike.scala')
-rw-r--r--src/library/scala/collection/BitSetLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/BitSetLike.scala b/src/library/scala/collection/BitSetLike.scala
index 4b87e75dcb..8476ede7b5 100644
--- a/src/library/scala/collection/BitSetLike.scala
+++ b/src/library/scala/collection/BitSetLike.scala
@@ -41,7 +41,7 @@ trait BitSetLike[+This <: BitSetLike[This] with Set[Int]] extends SetLike[Int, T
protected def nwords: Int
/** The words at index `idx', or 0L if outside the range of the set
- * @pre idx >= 0
+ * @note Requires `idx >= 0`
*/
protected def word(idx: Int): Long