summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-10-04 17:45:47 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-10-04 17:45:47 (GMT)
commit002b0a7ecdfc343388510a62813917e64dd07db1 (patch)
treeb79774c0091cd665f95d4669446656888162643c /Doc
parent7338ebc4ba00366fa2c4f592630c2acd98c178d8 (diff)
downloadcpython-002b0a7ecdfc343388510a62813917e64dd07db1.zip
cpython-002b0a7ecdfc343388510a62813917e64dd07db1.tar.gz
cpython-002b0a7ecdfc343388510a62813917e64dd07db1.tar.bz2
Issue #28348: Fix typo in asyncio.Task() documentation
Patch by Mariatta Wijaya.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-task.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index 598b37c..766e3b8 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -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.