From: Berker Peksag Date: Tue, 4 Oct 2016 17:45:47 +0000 (+0300) Subject: Issue #28348: Fix typo in asyncio.Task() documentation X-Git-Tag: v3.6.0b2~52^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=002b0a7ecdfc343388510a62813917e64dd07db1;p=python Issue #28348: Fix typo in asyncio.Task() documentation Patch by Mariatta Wijaya. --- 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.