summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-dev.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-18 09:22:00 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-02-18 09:22:00 +0100
commit0fb5fc57c9449714a101fad6371738efe5bd7796 (patch)
tree660dabd29af5098a969dff051af54e99b9e6570e /Doc/library/asyncio-dev.rst
parent73e5d46fa0d76edb1da150f7f8b18fd1014f17e4 (diff)
downloadcpython-0fb5fc57c9449714a101fad6371738efe5bd7796.tar.gz
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 b0d28b1e2c..90bae8440e 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.