diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-10-04 20:46:43 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-10-04 20:46:43 +0300 |
commit | ea1f9b934cea21efd525aba5c459d25f28f9ddea (patch) | |
tree | ae16a9c0153e6edbea8456bb6f0caf4dff1b76c5 | |
parent | d7f47ed28c521b8688421112bf67ff8997813f9e (diff) | |
parent | 5cb63ae3ca7beabcdbe208ba6f7815f4d8b4c7d4 (diff) | |
download | cpython-git-ea1f9b934cea21efd525aba5c459d25f28f9ddea.tar.gz |
Issue #28348: Merge from 3.6
-rw-r--r-- | 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 index 598b37cd85..766e3b88b8 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -374,7 +374,7 @@ Task 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. |