[docs] [issue28348] Doc typo in asyncio.Task

Poren Chiang report at bugs.python.org
Mon Oct 3 11:59:10 EDT 2016


New submission from Poren Chiang:

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

----------
assignee: docs at python
components: Documentation
messages: 277962
nosy: RSChiang, docs at python
priority: normal
severity: normal
status: open
title: Doc typo in asyncio.Task
versions: Python 3.5

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue28348>
_______________________________________


More information about the docs mailing list