summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-19 02:13:28 -0700
committerGitHub <noreply@github.com>2019-05-19 02:13:28 -0700
commitf81b33badab5d83afc7ee32c37e65a5cf60ad757 (patch)
tree62b779f96809c3efd70ba79ceb9777a8cfc1ddf0 /Doc
parent951b161857a840d4d14de0a5a6610e212d78ab68 (diff)
downloadcpython-git-f81b33badab5d83afc7ee32c37e65a5cf60ad757.tar.gz
Orthographical fix (GH-13418)
Add a missing comma. (cherry picked from commit 1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2) Co-authored-by: BoĊĦtjan Mejak <bostjan.xperia@gmail.com>
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 9e685b1764..29ccafee90 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -40,7 +40,7 @@ be executed::
>>> main()
<coroutine object main at 0x1053bb7c8>
-To actually run a coroutine asyncio provides three main mechanisms:
+To actually run a coroutine, asyncio provides three main mechanisms:
* The :func:`asyncio.run` function to run the top-level
entry point "main()" function (see the above example.)