summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/Iterator.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-26 14:03:24 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-26 14:03:24 +0000
commit6441087c31b9f550bb36d6afac4cfc7d4292b7cd (patch)
treebd2ab9f8d5c013b3f90460e6ea621d13208c5dad /src/library/scala/collection/Iterator.scala
parent6975d16800499815a07c80c6d4fe85c2de693d96 (diff)
downloadscala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.tar.gz
scala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.tar.bz2
scala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.zip
Fixed a number of faulty Scaladoc comments in l...
Fixed a number of faulty Scaladoc comments in library and compiler sources. No review.
Diffstat (limited to 'src/library/scala/collection/Iterator.scala')
-rw-r--r--src/library/scala/collection/Iterator.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/Iterator.scala b/src/library/scala/collection/Iterator.scala
index 7dbc39f5b7..4e8a409efd 100644
--- a/src/library/scala/collection/Iterator.scala
+++ b/src/library/scala/collection/Iterator.scala
@@ -328,7 +328,7 @@ trait Iterator[+A] { self =>
}
/** Concatenates this iterator with another.
- * @that the other iterator
+ * @param that the other iterator
* @return a new iterator that first yields the values produced by this
* iterator followed by the values produced by iterator `that`.
* @usecase def ++(that: => Iterator[A]): Iterator[A]
@@ -1288,7 +1288,7 @@ trait Iterator[+A] { self =>
* @param xs the array to fill.
* @param start the starting index.
* @param sz the maximum number of elements to be read.
- * @pre the array must be large enough to hold `sz` elements.
+ * @note the array must be large enough to hold `sz` elements.
*/
@deprecated("use copyToArray instead")
def readInto[B >: A](xs: Array[B], start: Int, sz: Int) {