summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-05-15 14:47:50 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-05-15 14:47:50 +0200
commit99687342fe39e264f406592f78d7b20125660157 (patch)
tree0ba9a2d8894704bdcae1381cbc8dad2c45d3b083 /src/library
parent135c26d90affb7addb1a28bd7244cf924eff16a3 (diff)
downloadscala-99687342fe39e264f406592f78d7b20125660157.tar.gz
scala-99687342fe39e264f406592f78d7b20125660157.tar.bz2
scala-99687342fe39e264f406592f78d7b20125660157.zip
Missed a straggling doc comment.
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/Array.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/Array.scala b/src/library/scala/Array.scala
index f63c3d2086..e7cf399fa4 100644
--- a/src/library/scala/Array.scala
+++ b/src/library/scala/Array.scala
@@ -438,7 +438,7 @@ object Array extends FallbackArrayBuilding {
* Arrays make use of two common pieces of Scala syntactic sugar, shown on lines 2 and 3 of the above
* example code.
* Line 2 is translated into a call to `apply(Int)`, while line 3 is translated into a call to
- * `update(Int, T)`. For more information on these transformations, see the
+ * `update(Int, T)`.
*
* Two implicit conversions exist in [[scala.Predef]] that are frequently applied to arrays: a conversion
* to [[scala.collection.mutable.ArrayOps]] (shown on line 4 of the example above) and a conversion