@@ -302,7 +302,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
302
302
scan</emphasis>, the cooperating processes take turns reading data from the
303
303
index. Currently, parallel index scans are supported only for
304
304
btree indexes. Each process will claim a single index block and will
305
- scan and return all tuples referenced by that block; otherprocess can
305
+ scan and return all tuples referenced by that block; otherprocesses can
306
306
at the same time be returning tuples from a different index block.
307
307
The results of a parallel btree scan are returned in sorted order
308
308
within each worker process.
@@ -435,7 +435,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
435
435
involve appending multiple results sets can therefore achieve
436
436
coarse-grained parallelism even when efficient partial plans are not
437
437
available. For example, consider a query against a partitioned table
438
- which canbe only be implemented efficiently by using an index that does
438
+ which can only be implemented efficiently by using an index that does
439
439
not support parallel scans. The planner might choose a <literal>Parallel
440
440
Append</literal> of regular <literal>Index Scan</literal> plans; each
441
441
individual index scan would have to be executed to completion by a single