summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/LinearSeq.scala
diff options
context:
space:
mode:
authorJosh Marcus <jmarcus@azavea.com>2011-12-06 11:27:17 -0500
committerJosh Marcus <jmarcus@azavea.com>2011-12-06 11:27:17 -0500
commit526c086e121d8d6c15726c769edbf96efd882ae7 (patch)
tree6dba90676047d87fa359166cf43845d605ab1cdb /src/library/scala/collection/mutable/LinearSeq.scala
parent6a33a206196d95d931b5569b466275c19426e5b2 (diff)
downloadscala-526c086e121d8d6c15726c769edbf96efd882ae7.tar.gz
scala-526c086e121d8d6c15726c769edbf96efd882ae7.tar.bz2
scala-526c086e121d8d6c15726c769edbf96efd882ae7.zip
Update scaladoc links to collections overview.
Change scaladoc links in collection classes to point at re-formatted Collections Overview on docs.scala-lang.org. Fix minor typo: s/Ummutable/Immutable
Diffstat (limited to 'src/library/scala/collection/mutable/LinearSeq.scala')
-rw-r--r--src/library/scala/collection/mutable/LinearSeq.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/mutable/LinearSeq.scala b/src/library/scala/collection/mutable/LinearSeq.scala
index 9f7443da0e..522ebfd277 100644
--- a/src/library/scala/collection/mutable/LinearSeq.scala
+++ b/src/library/scala/collection/mutable/LinearSeq.scala
@@ -19,8 +19,8 @@ import generic._
*
* @define Coll LinearSeq
* @define coll linear sequence
- * @see [[http://www.scala-lang.org/docu/files/collections-api/collections_29.html "The Scala 2.8 Collections API"]]
- * section on `Mutable Lists` for more information.
+ * @see [[http://docs.scala-lang.org/overviews/collections/concrete-mutable-collection-classes.html#mutable_lists "Scala's Collection Library overview"]]
+ * section on `Mutable Lists` for more information.
*/
trait LinearSeq[A] extends Seq[A]
with scala.collection.LinearSeq[A]