summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/IterableLike.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2010-04-09 17:25:34 +0000
committerMartin Odersky <odersky@gmail.com>2010-04-09 17:25:34 +0000
commit261e399ba3a11a5844e057526a6161970b75e8d3 (patch)
tree21b7cd014d5758cf8a442b3e26c4e89321ddf082 /src/library/scala/collection/IterableLike.scala
parent0d80fa2d50c287837f45fb26e8ab3b69e278a9bb (diff)
downloadscala-261e399ba3a11a5844e057526a6161970b75e8d3.tar.gz
scala-261e399ba3a11a5844e057526a6161970b75e8d3.tar.bz2
scala-261e399ba3a11a5844e057526a6161970b75e8d3.zip
Updated 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 e348ba12e5..0efc756b10 100644
--- a/src/library/scala/collection/IterableLike.scala
+++ b/src/library/scala/collection/IterableLike.scala
@@ -15,10 +15,8 @@ import annotation.unchecked.uncheckedVariance
/** A template trait for iterable collections of type `Iterable[A]`.
* $iterableInfo
- * @tparam A the element type of the collection
- * @tparam Repr the type of the actual collection containing the elements.
* @define iterableInfo
- * This is a base trait for all scala collections that define an `iterator`
+ * This is a base trait for all $mutability Scala collections that define an `iterator`
* method to step through one-by-one the collection's elements.
* Implementations of this trait need to provide a concrete method with
* signature:
@@ -44,6 +42,8 @@ import annotation.unchecked.uncheckedVariance
* @author Martin Odersky
* @version 2.8
* @since 2.8
+ * @tparam A the element type of the collection
+ * @tparam Repr the type of the actual collection containing the elements.
*
* @define Coll Iterable
* @define coll iterable collection