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@python
components: Documentation
messages: 277962
nosy: RSChiang, docs@python
priority: normal
severity: normal
status: open
title: Doc typo in asyncio.Task
versions: Python 3.5

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue28348>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to