summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/collection/parallel/ParIterableLike.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/parallel/ParIterableLike.scala b/src/library/scala/collection/parallel/ParIterableLike.scala
index 332d132ad0..5ec0238c69 100644
--- a/src/library/scala/collection/parallel/ParIterableLike.scala
+++ b/src/library/scala/collection/parallel/ParIterableLike.scala
@@ -416,8 +416,8 @@ self: ParIterableLike[T, Repr, Sequential] =>
* may be invoked arbitrary number of times.
*
* For example, one might want to process some elements and then produce a `Set`. In this
- * case, `seqop` would process an element and append it to the list, while `combop`
- * would concatenate two lists from different partitions together. The initial value
+ * case, `seqop` would process an element and append it to the set, while `combop`
+ * would concatenate two sets from different partitions together. The initial value
* `z` would be an empty set.
*
* {{{