File tree 2 files changed +3
-3
lines changed
src/library/scala/collection
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ package collection
12
12
import parallel .Combiner
13
13
14
14
/** This trait describes collections which can be turned into parallel collections
15
- * by invoking the method `par`. Parallelizable collections may be parametrized with
15
+ * by invoking the method `par`. Parallelizable collections may be parameterized with
16
16
* a target type different than their own.
17
17
*
18
18
* @tparam A the type of the elements in the collection
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import scala.concurrent.ExecutionContext
16
16
/** A trait implementing the scheduling of a parallel collection operation.
17
17
*
18
18
* Parallel collections are modular in the way operations are scheduled. Each
19
- * parallel collection is parametrized with a task support object which is
19
+ * parallel collection is parameterized with a task support object which is
20
20
* responsible for scheduling and load-balancing tasks to processors.
21
21
*
22
22
* A task support object can be changed in a parallel collection after it has
@@ -71,7 +71,7 @@ extends TaskSupport with AdaptiveWorkStealingThreadPoolTasks
71
71
* forkjoin based task support or a thread pool executor one, depending on
72
72
* what the execution context uses.
73
73
*
74
- * By default, parallel collections are parametrized with this task support
74
+ * By default, parallel collections are parameterized with this task support
75
75
* object, so parallel collections share the same execution context backend
76
76
* as the rest of the `scala.concurrent` package.
77
77
*
You can’t perform that action at this time.
0 commit comments