summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorXusen Yin <yinxusen@gmail.com>2013-11-05 09:06:59 +0800
committerXusen Yin <yinxusen@gmail.com>2013-11-05 09:06:59 +0800
commit5aef1ea13b49561ac62e59d963f14b04803b2ab8 (patch)
tree02fee3069ae07b0b0c8b167d4008cefe331cde5b /src/library
parent4a6882e7729ab010848fe0744c55f096164e1853 (diff)
downloadscala-5aef1ea13b49561ac62e59d963f14b04803b2ab8.tar.gz
scala-5aef1ea13b49561ac62e59d963f14b04803b2ab8.tar.bz2
scala-5aef1ea13b49561ac62e59d963f14b04803b2ab8.zip
from Issue #3098
from Issue #3098, some typos.
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.
*
* {{{