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.1rc1~233^2~299 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0aba4dc1ed70a3f7eccef5556fdc620b2ffd32bd;p=python 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 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.