summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/SeqLike.scala
diff options
context:
space:
mode:
authorKato Kazuyoshi <kato.kazuyoshi@gmail.com>2011-06-18 13:52:29 +0000
committerKato Kazuyoshi <kato.kazuyoshi@gmail.com>2011-06-18 13:52:29 +0000
commit8e10b0579b15ef85ca577ae941adc941dfb62079 (patch)
treec167064f5af52cb3d3a2f87898747713fdfdc7c0 /src/library/scala/collection/mutable/SeqLike.scala
parent08546513f46d234c3e11f571ace4104521ea1a74 (diff)
downloadscala-8e10b0579b15ef85ca577ae941adc941dfb62079.tar.gz
scala-8e10b0579b15ef85ca577ae941adc941dfb62079.tar.bz2
scala-8e10b0579b15ef85ca577ae941adc941dfb62079.zip
Fixes typo in ScalaDoc: IndexOutofBoundsExcepti...
Fixes typo in ScalaDoc: IndexOutofBoundsException => IndexOutOfBoundsException. Contributed by Simon Ochsenreither. Review by dubochet.
Diffstat (limited to 'src/library/scala/collection/mutable/SeqLike.scala')
-rw-r--r--src/library/scala/collection/mutable/SeqLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/SeqLike.scala b/src/library/scala/collection/mutable/SeqLike.scala
index ae70378427..7194f15bc2 100644
--- a/src/library/scala/collection/mutable/SeqLike.scala
+++ b/src/library/scala/collection/mutable/SeqLike.scala
@@ -30,7 +30,7 @@ trait SeqLike[A, +This <: SeqLike[A, This] with Seq[A]]
*
* @param n the index of the element to replace.
* @param lem the new value.
- * @throws IndexOutofBoundsException if the index is not valid.
+ * @throws IndexOutOfBoundsException if the index is not valid.
*/
def update(idx: Int, elem: A)