[Python-checkins] cpython (3.5): Issue #28348: Fix typo in asyncio.Task() documentation
berker.peksag
python-checkins at python.org
Tue Oct 4 13:44:18 EDT 2016
https://hg.python.org/cpython/rev/8c8692da071a
changeset: 104289:8c8692da071a
branch: 3.5
parent: 104284:381ef0f08f89
user: Berker Peksag <berker.peksag at gmail.com>
date: Tue Oct 04 20:45:47 2016 +0300
summary:
Issue #28348: Fix typo in asyncio.Task() documentation
Patch by Mariatta Wijaya.
files:
Doc/library/asyncio-task.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -374,7 +374,7 @@
A task is responsible for executing a coroutine object in an event loop. If
the wrapped coroutine yields from a future, the task suspends the execution
- of the wrapped coroutine and waits for the completition of the future. When
+ of the wrapped coroutine and waits for the completion of the future. When
the future is done, the execution of the wrapped coroutine restarts with the
result or the exception of the future.
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list