From: Victor Stinner Date: Tue, 18 Feb 2014 08:22:00 +0000 (+0100) Subject: Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon. X-Git-Tag: v3.4.0rc2~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86516d9225d82cc039b1f71a41bec610cf9ab5ce;p=thirdparty%2FPython%2Fcpython.git Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon. --- diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index b0d28b1e2c51..90bae8440ee7 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.