Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb1720b

Browse files
committed
Fix "seperate".
1 parent 792c076 commit fb1720b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/concurrent.futures.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for
1010
asynchronously executing callables.
1111

1212
The asynchronous execution can be be performed with threads, using
13-
:class:`ThreadPoolExecutor`, or seperate processes, using
13+
:class:`ThreadPoolExecutor`, or separate processes, using
1414
:class:`ProcessPoolExecutor`. Both implement the same interface, which is
1515
defined by the abstract :class:`Executor` class.
1616

Lib/concurrent/futures/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def __init__(self, work_id, fn, args, kwargs):
118118
def _process_worker(call_queue, result_queue, shutdown):
119119
"""Evaluates calls from call_queue and places the results in result_queue.
120120
121-
This worker is run in a seperate process.
121+
This worker is run in a separate process.
122122
123123
Args:
124124
call_queue: A multiprocessing.Queue of _CallItems that will be read and

0 commit comments

Comments
 (0)