This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author RSChiang
Recipients RSChiang, docs@python
Date 2016-10-03.15:59:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475510350.17.0.416323283403.issue28348@psf.upfronthosting.co.za>
In-reply-to
Content
Version: Latest (v3.5.2)
Affected module: asyncio (section 18.5)

Problem:
Under section 18.5.3.5. "Task", The word "completion" is misspelled "completition".

> 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 the future is done, the execution of the wrapped coroutine restarts with the result or the exception of the future.

Possible fixes:

Replace "completition" with "completion".

Reference:

[1] https://docs.python.org/3/library/asyncio-task.html#task
History
Date User Action Args
2016-10-03 15:59:10RSChiangsetrecipients: + RSChiang, docs@python
2016-10-03 15:59:10RSChiangsetmessageid: <1475510350.17.0.416323283403.issue28348@psf.upfronthosting.co.za>
2016-10-03 15:59:10RSChianglinkissue28348 messages
2016-10-03 15:59:10RSChiangcreate