summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/Iterable.scala
diff options
context:
space:
mode:
authorRex Kerr <ichoran@gmail.com>2014-06-26 18:07:57 -0700
committerRex Kerr <ichoran@gmail.com>2014-06-26 18:07:57 -0700
commit1f53a0d180a1fa561502f3d7884d71daf998a837 (patch)
tree4c7843266d90ddcf2f97cbf7ec543b39194349a7 /src/library/scala/collection/Iterable.scala
parent0a67b3c75c10b1d5e6388b10797d4aa893655e5d (diff)
downloadscala-1f53a0d180a1fa561502f3d7884d71daf998a837.tar.gz
scala-1f53a0d180a1fa561502f3d7884d71daf998a837.tar.bz2
scala-1f53a0d180a1fa561502f3d7884d71daf998a837.zip
SI-7577 Incorrect documentation: current default isn't Vector
Fixed documentation to specify List in four cases where it was wrong or missing.
Diffstat (limited to 'src/library/scala/collection/Iterable.scala')
-rw-r--r--src/library/scala/collection/Iterable.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/Iterable.scala b/src/library/scala/collection/Iterable.scala
index a5ab8efd5c..afbffd36c6 100644
--- a/src/library/scala/collection/Iterable.scala
+++ b/src/library/scala/collection/Iterable.scala
@@ -38,7 +38,7 @@ trait Iterable[+A] extends Traversable[A]
}
/** $factoryInfo
- * The current default implementation of a $Coll is a `Vector`.
+ * The current default implementation of a $Coll is a `List`.
* @define coll iterable collection
* @define Coll `Iterable`
*/