summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-11-04 20:07:29 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-11-04 20:07:29 -0800
commit92ec2cafb3333a710746a1a1bc1351000b2a3372 (patch)
tree02fee3069ae07b0b0c8b167d4008cefe331cde5b /src/library
parent4a6882e7729ab010848fe0744c55f096164e1853 (diff)
parent5aef1ea13b49561ac62e59d963f14b04803b2ab8 (diff)
downloadscala-92ec2cafb3333a710746a1a1bc1351000b2a3372.tar.gz
scala-92ec2cafb3333a710746a1a1bc1351000b2a3372.tar.bz2
scala-92ec2cafb3333a710746a1a1bc1351000b2a3372.zip
Merge pull request #3099 from yinxusen/patch-1
Fix typo in ParIterableLike
Diffstat (limited to 'src/library')
-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.
*
* {{{