summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/GenSeqLike.scala
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-07-28 19:13:44 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-07-28 19:13:44 +0100
commit69c2c106fedd60f5c29a4aad696dec1de5e85200 (patch)
tree5e4e3cde1cc516136e48107a4a820211a492e417 /src/library/scala/collection/GenSeqLike.scala
parent7492bda816094cc089821cfb2915bd34c6b1ce96 (diff)
downloadscala-69c2c106fedd60f5c29a4aad696dec1de5e85200.tar.gz
scala-69c2c106fedd60f5c29a4aad696dec1de5e85200.tar.bz2
scala-69c2c106fedd60f5c29a4aad696dec1de5e85200.zip
ScalaDoc fixes for library and library-aux
Diffstat (limited to 'src/library/scala/collection/GenSeqLike.scala')
-rw-r--r--src/library/scala/collection/GenSeqLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/GenSeqLike.scala b/src/library/scala/collection/GenSeqLike.scala
index f786293822..be1da1660a 100644
--- a/src/library/scala/collection/GenSeqLike.scala
+++ b/src/library/scala/collection/GenSeqLike.scala
@@ -274,7 +274,7 @@ trait GenSeqLike[+A, +Repr] extends Any with GenIterableLike[A, Repr] with Equal
* @tparam B the element type of the returned $coll.
* @tparam That $thatinfo
* @param bf $bfinfo
- * @return a new $coll` which is a copy of this $coll with the element at position `index` replaced by `elem`.
+ * @return a new $coll which is a copy of this $coll with the element at position `index` replaced by `elem`.
* @throws IndexOutOfBoundsException if `index` does not satisfy `0 <= index < length`.
*
* @usecase def updated(index: Int, elem: A): $Coll[A]