summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-09-04 10:41:05 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-09-04 10:41:05 -0700
commitb110b0ff5ddab1e555b07561580df4c013b3ef0b (patch)
tree35b44feb94a93a0665128d821888666615cee3fd
parent5ca923acd06c0f3fbf9441f85c46c62430176293 (diff)
parentaab8d596acd97225c674c06737bb1d80e01daa0f (diff)
downloadscala-b110b0ff5ddab1e555b07561580df4c013b3ef0b.tar.gz
scala-b110b0ff5ddab1e555b07561580df4c013b3ef0b.tar.bz2
scala-b110b0ff5ddab1e555b07561580df4c013b3ef0b.zip
Merge pull request #1248 from jsuereth/fix/SI-6285
Fixes SI-6285 - ParIterableLike no longer says sequential foreach.
-rw-r--r--src/library/scala/collection/parallel/ParIterableLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/parallel/ParIterableLike.scala b/src/library/scala/collection/parallel/ParIterableLike.scala
index 26877a32b1..ef693ab7ca 100644
--- a/src/library/scala/collection/parallel/ParIterableLike.scala
+++ b/src/library/scala/collection/parallel/ParIterableLike.scala
@@ -453,7 +453,7 @@ self: ParIterableLike[T, Repr, Sequential] =>
def reduceRightOption[U >: T](op: (T, U) => U): Option[U] = seq.reduceRightOption(op)
- /** Applies a function `f` to all the elements of $coll in a sequential order.
+ /** Applies a function `f` to all the elements of $coll in a undefined order.
*
* @tparam U the result type of the function applied to each element, which is always discarded
* @param f function applied to each element