summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-dev.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-18 08:22:00 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-18 08:22:00 (GMT)
commit86516d9225d82cc039b1f71a41bec610cf9ab5ce (patch)
tree5a6dc7ac0b0c682d7354c400fc6dc5ef5f355e7c /Doc/library/asyncio-dev.rst
parent9a49c648caf4e8c82b890cd106be0b18eef7fb23 (diff)
downloadcpython-86516d9225d82cc039b1f71a41bec610cf9ab5ce.zip
cpython-86516d9225d82cc039b1f71a41bec610cf9ab5ce.tar.gz
cpython-86516d9225d82cc039b1f71a41bec610cf9ab5ce.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.rst2
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.