summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-05-24 17:45:00 +0200
committerAleksandar Prokopec <axel22@gmail.com>2012-05-24 17:45:00 +0200
commit2f5041a97302a3512e602661f6e040c4b54af352 (patch)
treedfa98c468dde7d59bdeea3c08fd1031df49282be
parente490b02476769310765a8d61da656b535d21c56e (diff)
downloadscala-2f5041a97302a3512e602661f6e040c4b54af352.tar.gz
scala-2f5041a97302a3512e602661f6e040c4b54af352.tar.bz2
scala-2f5041a97302a3512e602661f6e040c4b54af352.zip
Fixes SI-5441.
-rw-r--r--src/library/scala/collection/package.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/package.scala b/src/library/scala/collection/package.scala
index 237ca28018..ac5cb66942 100644
--- a/src/library/scala/collection/package.scala
+++ b/src/library/scala/collection/package.scala
@@ -45,7 +45,7 @@ package scala
*
* The most common way to create a collection is to use the companion objects as factories.
* Of these, the three most common
- * are [[scala.collection.immutable.Seq]], [[scala.collection.immutable.Set]], and [[scala.collection.immutable.Map]]. Their
+ * are [[scala.collection.Seq]], [[scala.collection.immutable.Set]], and [[scala.collection.immutable.Map]]. Their
* companion objects are all available
* as type aliases the either the [[scala]] package or in `scala.Predef`, and can be used
* like so:
@@ -61,7 +61,7 @@ package scala
* }}}
*
* It is also typical to use the [[scala.collection.immutable]] collections over those
- * in [[scala.collection.mutable]]; The types aliased in the [[scala]] package and
+ * in [[scala.collection.mutable]]; The types aliased in
* the `scala.Predef` object are the immutable versions.
*
* Also note that the collections library was carefully designed to include several implementations of