summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/IterableLike.scala
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-05-16 10:51:39 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-05-16 10:51:39 +0200
commit37d6ffbdb0fe81f59a8b015e3beaa8b52033adca (patch)
tree64ac9a0bb602a0d1a00e540d110a61542b8a6462 /src/library/scala/collection/IterableLike.scala
parent99687342fe39e264f406592f78d7b20125660157 (diff)
downloadscala-37d6ffbdb0fe81f59a8b015e3beaa8b52033adca.tar.gz
scala-37d6ffbdb0fe81f59a8b015e3beaa8b52033adca.tar.bz2
scala-37d6ffbdb0fe81f59a8b015e3beaa8b52033adca.zip
Corrects links in API documentation
Diffstat (limited to 'src/library/scala/collection/IterableLike.scala')
-rw-r--r--src/library/scala/collection/IterableLike.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/collection/IterableLike.scala b/src/library/scala/collection/IterableLike.scala
index 0a5d9fc23c..2e9599058f 100644
--- a/src/library/scala/collection/IterableLike.scala
+++ b/src/library/scala/collection/IterableLike.scala
@@ -148,7 +148,7 @@ self =>
}
/** Partitions elements in fixed size ${coll}s.
- * @see Iterator#grouped
+ * @see [[scala.collection.Iterator]], method `grouped`
*
* @param size the number of elements per group
* @return An iterator producing ${coll}s of size `size`, except the
@@ -163,7 +163,7 @@ self =>
/** Groups elements in fixed size blocks by passing a "sliding window"
* over them (as opposed to partitioning them, as is done in grouped.)
- * @see Iterator#sliding
+ * @see [[scala.collection.Iterator]], method `sliding`
*
* @param size the number of elements per group
* @return An iterator producing ${coll}s of size `size`, except the
@@ -174,7 +174,7 @@ self =>
/** Groups elements in fixed size blocks by passing a "sliding window"
* over them (as opposed to partitioning them, as is done in grouped.)
- * @see Iterator#sliding
+ * @see [[scala.collection.Iterator]], method `sliding`
*
* @param size the number of elements per group
* @param step the distance between the first elements of successive