diff options
author | Georg Brandl <georg@python.org> | 2010-12-09 18:08:43 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-09 18:08:43 +0000 |
commit | fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b (patch) | |
tree | 0a71ef7e4af78737650c75b1e12ee3f51495969f /Doc/library/concurrent.futures.rst | |
parent | 792c076cce293d8c561c06f4d54749a4b26baf96 (diff) | |
download | cpython-git-fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b.tar.gz |
Fix "seperate".
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 a7a2c39463..3b74aa88bf 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for asynchronously executing callables. The asynchronous execution can be be performed with threads, using -:class:`ThreadPoolExecutor`, or seperate processes, using +:class:`ThreadPoolExecutor`, or separate processes, using :class:`ProcessPoolExecutor`. Both implement the same interface, which is defined by the abstract :class:`Executor` class. |