Commit 1724be2c authored by Berker Peksag's avatar Berker Peksag

Issue #28348: Fix typo in asyncio.Task() documentation

Patch by Mariatta Wijaya.
parent 468b2725
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment