summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/GenTraversableLike.scala
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-04-19 12:36:20 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-04-19 12:36:20 +0200
commitb5d583063e995a2054fa3fde3b190ee4ffa843f5 (patch)
tree5f6b54a18f0fd21c4992843e26c3425403a5e235 /src/library/scala/collection/GenTraversableLike.scala
parent016bc3db52d6f1ffa3ef2285d5801f82f5f49167 (diff)
downloadscala-b5d583063e995a2054fa3fde3b190ee4ffa843f5.tar.gz
scala-b5d583063e995a2054fa3fde3b190ee4ffa843f5.tar.bz2
scala-b5d583063e995a2054fa3fde3b190ee4ffa843f5.zip
SI-5677, Tiny typo. Fixed.
Diffstat (limited to 'src/library/scala/collection/GenTraversableLike.scala')
-rw-r--r--src/library/scala/collection/GenTraversableLike.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/collection/GenTraversableLike.scala b/src/library/scala/collection/GenTraversableLike.scala
index fd03e0f446..4500a849b1 100644
--- a/src/library/scala/collection/GenTraversableLike.scala
+++ b/src/library/scala/collection/GenTraversableLike.scala
@@ -91,7 +91,7 @@ trait GenTraversableLike[+A, +Repr] extends Any with GenTraversableOnce[A] with
*/
def scan[B >: A, That](z: B)(op: (B, B) => B)(implicit cbf: CanBuildFrom[Repr, B, That]): That
- /** Produces a collection containing cummulative results of applying the
+ /** Produces a collection containing cumulative results of applying the
* operator going left to right.
*
* $willNotTerminateInf
@@ -106,8 +106,8 @@ trait GenTraversableLike[+A, +Repr] extends Any with GenTraversableOnce[A] with
*/
def scanLeft[B, That](z: B)(op: (B, A) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That
- /** Produces a collection containing cummulative results of applying the operator going right to left.
- * The head of the collection is the last cummulative result.
+ /** Produces a collection containing cumulative results of applying the operator going right to left.
+ * The head of the collection is the last cumulative result.
* $willNotTerminateInf
* $orderDependent
*