summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/immutable/BitSet.scala
diff options
context:
space:
mode:
authorBurak Emir <emir@epfl.ch>2006-09-09 15:36:37 +0000
committerBurak Emir <emir@epfl.ch>2006-09-09 15:36:37 +0000
commita6279c2d919e324001a4d0c432482cfc4dc968a4 (patch)
treec531de61c23fd1a808c61473d6d6543e25f3d710 /src/library/scala/collection/immutable/BitSet.scala
parentd0798c6b85e63fe4d9b3a2937f4f49f9c54ba9ea (diff)
downloadscala-a6279c2d919e324001a4d0c432482cfc4dc968a4.tar.gz
scala-a6279c2d919e324001a4d0c432482cfc4dc968a4.tar.bz2
scala-a6279c2d919e324001a4d0c432482cfc4dc968a4.zip
fixed doc comment
Diffstat (limited to 'src/library/scala/collection/immutable/BitSet.scala')
-rw-r--r--src/library/scala/collection/immutable/BitSet.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/collection/immutable/BitSet.scala b/src/library/scala/collection/immutable/BitSet.scala
index 452d5664d3..d0c7e22d94 100644
--- a/src/library/scala/collection/immutable/BitSet.scala
+++ b/src/library/scala/collection/immutable/BitSet.scala
@@ -16,9 +16,9 @@ package scala.collection.immutable
* int array. Instances can conveniently be created from instances of
* Bit indices are between 0..(capacity-1) inclusive
*
- * @param <code>n</code> represents the number of relevant bits
- * @param ba: array of ints of length <code>n</code>&gt;&gt;&gt;5
- * @param copy: if yes, then <code>ba</code> is copied and updates will
+ * @param <code>size</code> represents the number of relevant bits
+ * @param <code>ba</code> array of ints of length <code>n</code>&gt;&gt;&gt;5
+ * @param <code>copy: if yes, then <code>ba</code> is copied and updates will
* not affect this bitset
*
* @author Burak Emir, Nikolay Mihaylov