diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-17 04:34:13 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-17 04:34:13 (GMT) |
commit | a68c1ab5711b5bd0219d46f61ff85d4770708490 (patch) | |
tree | 55103d2792a44c53ac42787e0e609ee5024a2f16 | |
parent | d13c008bf41b43b3cca148198abf695df04af37a (diff) | |
download | cpython-a68c1ab5711b5bd0219d46f61ff85d4770708490.zip cpython-a68c1ab5711b5bd0219d46f61ff85d4770708490.tar.gz cpython-a68c1ab5711b5bd0219d46f61ff85d4770708490.tar.bz2 |
#17771: fix typo. Patch by Andriy Mysyk.
-rw-r--r-- | Doc/library/concurrency.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrency.rst b/Doc/library/concurrency.rst index fd2dae2..f2a512f 100644 --- a/Doc/library/concurrency.rst +++ b/Doc/library/concurrency.rst @@ -8,7 +8,7 @@ The modules described in this chapter provide support for concurrent execution of code. The appropriate choice of tool will depend on the task to be executed (CPU bound vs IO bound) and preferred style of development (event driven cooperative multitasking vs preemptive -multitasking) Here's an overview: +multitasking). Here's an overview: .. toctree:: |