summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/LinearSeq.scala
diff options
context:
space:
mode:
authorAntoine Gourlay <antoine@gourlay.fr>2014-04-30 21:11:05 +0200
committerAntoine Gourlay <antoine@gourlay.fr>2014-04-30 21:11:05 +0200
commitb3243e8d42871686a5c6c7b80e9874336a168795 (patch)
treecefe3d08f8705da42afe91cefed931c54ffe5810 /src/library/scala/collection/LinearSeq.scala
parentca9003e453873c496c72c431f0e5f9f3eaf31511 (diff)
downloadscala-b3243e8d42871686a5c6c7b80e9874336a168795.tar.gz
scala-b3243e8d42871686a5c6c7b80e9874336a168795.tar.bz2
scala-b3243e8d42871686a5c6c7b80e9874336a168795.zip
SI-8550 fix scaladoc for the default s.c.LinearSeq.
The default LinearSeq is a List (LinearSeq.newBuilder delegates to immutable.LinearSeq.newBuilder, whose default is List).
Diffstat (limited to 'src/library/scala/collection/LinearSeq.scala')
-rw-r--r--src/library/scala/collection/LinearSeq.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/LinearSeq.scala b/src/library/scala/collection/LinearSeq.scala
index 1e4975a0a7..49fbb902ab 100644
--- a/src/library/scala/collection/LinearSeq.scala
+++ b/src/library/scala/collection/LinearSeq.scala
@@ -25,7 +25,7 @@ trait LinearSeq[+A] extends Seq[A]
}
/** $factoryInfo
- * The current default implementation of a $Coll is a `Vector`.
+ * The current default implementation of a $Coll is a `List`.
* @define coll linear sequence
* @define Coll `LinearSeq`
*/