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)
commit0aba4dc1ed70a3f7eccef5556fdc620b2ffd32bd (patch)
treeaf2284015ed134adc4a6f5e6bf43f1d5456e7291 /Doc/library/asyncio-dev.rst
parent7d02d50504d52c4a24f6687c8bc7393aa5088c19 (diff)
downloadcpython-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.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.