diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-18 08:22:00 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-18 08:22:00 (GMT) |
commit | 0aba4dc1ed70a3f7eccef5556fdc620b2ffd32bd (patch) | |
tree | af2284015ed134adc4a6f5e6bf43f1d5456e7291 /Doc/library/asyncio-dev.rst | |
parent | 7d02d50504d52c4a24f6687c8bc7393aa5088c19 (diff) | |
download | cpython-0aba4dc1ed70a3f7eccef5556fdc620b2ffd32bd.zip cpython-0aba4dc1ed70a3f7eccef5556fdc620b2ffd32bd.tar.gz cpython-0aba4dc1ed70a3f7eccef5556fdc620b2ffd32bd.tar.bz2 |
Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.
Diffstat (limited to 'Doc/library/asyncio-dev.rst')
-rw-r--r-- | Doc/library/asyncio-dev.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index b0d28b1..90bae84 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -13,7 +13,7 @@ Concurrency and multithreading ------------------------------ An event loop runs in a thread and executes all callbacks and tasks in the same -thread. While a task in running in the event loop, no other task is running in +thread. While a task is running in the event loop, no other task is running in the same thread. But when the task uses ``yield from``, the task is suspended and the event loop executes the next task. |