summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/Iterable.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2009-07-07 10:18:05 +0000
committermichelou <michelou@epfl.ch>2009-07-07 10:18:05 +0000
commitdbe0e2bc384fdf7eac0312859347aa62a4778390 (patch)
tree36e9b3e88aa3c66f390306c082b827b741615116 /src/library/scala/collection/mutable/Iterable.scala
parent5754e85ed09df3722c3ca98e0832656ab8699e74 (diff)
downloadscala-dbe0e2bc384fdf7eac0312859347aa62a4778390.tar.gz
scala-dbe0e2bc384fdf7eac0312859347aa62a4778390.tar.bz2
scala-dbe0e2bc384fdf7eac0312859347aa62a4778390.zip
fixed Scala comments, added svn:keywords
Diffstat (limited to 'src/library/scala/collection/mutable/Iterable.scala')
-rw-r--r--src/library/scala/collection/mutable/Iterable.scala16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/library/scala/collection/mutable/Iterable.scala b/src/library/scala/collection/mutable/Iterable.scala
index 66c678adb9..41a88af7f8 100644
--- a/src/library/scala/collection/mutable/Iterable.scala
+++ b/src/library/scala/collection/mutable/Iterable.scala
@@ -9,8 +9,11 @@ package scala.collection.mutable
import generic._
-/** A subtrait of collection.Iterable which represents iterables
- * that can be mutated.
+/** <p>
+ * A subtrait of <a href="../Iterable.html" target="contentFrame">
+ * <code>collection.Iterable</code></a> which represents iterables
+ * that can be mutated.
+ * </p>
*
* @author Martin Odersky
* @version 2.8
@@ -22,7 +25,14 @@ trait Iterable[A] extends Traversable[A]
override def companion: Companion[Iterable] = Iterable
}
-/* A factory object for the trait `Iterable` */
+/** <p>
+ * A factory object for the trait <a href="Iterable.html"
+ * target="contentFrame"><code>Iterable</code></a>.
+ * </p>
+ *
+ * @author Martin Odersky
+ * @version 2.8
+ */
object Iterable extends TraversableFactory[Iterable] {
implicit def builderFactory[A]: BuilderFactory[A, Iterable[A], Coll] = new VirtualBuilderFactory[A]
def newBuilder[A]: Builder[A, Iterable[A]] = new ArrayBuffer