summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/MutableList.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/MutableList.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/MutableList.scala')
-rw-r--r--src/library/scala/collection/mutable/MutableList.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/mutable/MutableList.scala b/src/library/scala/collection/mutable/MutableList.scala
index fb724339e3..3a0d9e0996 100644
--- a/src/library/scala/collection/mutable/MutableList.scala
+++ b/src/library/scala/collection/mutable/MutableList.scala
@@ -73,12 +73,12 @@ extends LinearSeq[A]
override def length: Int = len
/** Returns the <code>n</code>th element of this list.
- * @throws IndexOutofBoundsException if index does not exist.
+ * @throws IndexOutOfBoundsException if index does not exist.
*/
override def apply(n: Int): A = first0.apply(n)
/** Updates the <code>n</code>th element of this list to a new value.
- * @throws IndexOutofBoundsException if index does not exist.
+ * @throws IndexOutOfBoundsException if index does not exist.
*/
def update(n: Int, x: A): Unit = first0.update(n, x)