summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoĊĦtjan Mejak <bostjan.xperia@gmail.com>2019-05-19 09:01:36 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-19 09:01:36 (GMT)
commit1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2 (patch)
treecf5d24347f13560923d3777e709d330155315223
parentf665b96e92a6a6943e312e2c606f348db95939ab (diff)
downloadcpython-1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2.zip
cpython-1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2.tar.gz
cpython-1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2.tar.bz2
Orthographical fix (GH-13418)
Add a missing comma.
-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 e7cf39b..bb064bd 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.)