diff -r 8c005be54305 Doc/library/asyncio-task.rst --- a/Doc/library/asyncio-task.rst Mon Oct 03 19:50:56 2016 +0100 +++ b/Doc/library/asyncio-task.rst Mon Oct 03 20:22:25 2016 -0700 @@ -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.