[Python-checkins] cpython (3.4): Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.

larry.hastings python-checkins at python.org
Mon Mar 17 07:31:53 CET 2014


http://hg.python.org/cpython/rev/38516b2ffe92
changeset:   89720:38516b2ffe92
branch:      3.4
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Feb 18 09:22:00 2014 +0100
summary:
  Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.

files:
  Doc/library/asyncio-dev.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
--- a/Doc/library/asyncio-dev.rst
+++ b/Doc/library/asyncio-dev.rst
@@ -13,7 +13,7 @@
 ------------------------------
 
 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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list