diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2022-06-21 19:10:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 19:10:45 (GMT) |
commit | 830513754d081619b2d72db17770627312072fa5 (patch) | |
tree | 6cedb4923e174bf2611faa1b5e74a8016f12bbb6 /Doc/library/concurrent.futures.rst | |
parent | f62ff97f31a775cc7956adeae32c14e7c85bdc15 (diff) | |
download | cpython-830513754d081619b2d72db17770627312072fa5.zip cpython-830513754d081619b2d72db17770627312072fa5.tar.gz cpython-830513754d081619b2d72db17770627312072fa5.tar.bz2 |
gh-93675: Fix typos in `Doc/` (GH-93676)
Closes #93675
Diffstat (limited to 'Doc/library/concurrent.futures.rst')
-rw-r--r-- | Doc/library/concurrent.futures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 99703ff..8efbf0a 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -257,7 +257,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock. replaced with a fresh worker process. By default *max_tasks_per_child* is ``None`` which means worker processes will live as long as the pool. When a max is specified, the "spawn" multiprocessing start method will be used by - default in absense of a *mp_context* parameter. This feature is incompatible + default in absence of a *mp_context* parameter. This feature is incompatible with the "fork" start method. .. versionchanged:: 3.3 |