]> granicus.if.org Git - python/commitdiff
Issue #28348: Fix typo in asyncio.Task() documentation
authorBerker Peksag <berker.peksag@gmail.com>
Tue, 4 Oct 2016 17:45:47 +0000 (20:45 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Tue, 4 Oct 2016 17:45:47 +0000 (20:45 +0300)
Patch by Mariatta Wijaya.

Doc/library/asyncio-task.rst

index 598b37cd853f676be944c19ecef3f5fafa790f27..766e3b88b8c734239c9d37ca596c14c6051509fe 100644 (file)
@@ -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.