]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Orthographical fix (GH-13418)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 19 May 2019 09:13:28 +0000 (02:13 -0700)
committerGitHub <noreply@github.com>
Sun, 19 May 2019 09:13:28 +0000 (02:13 -0700)
Add a missing comma.
(cherry picked from commit 1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2)

Co-authored-by: BoĊĦtjan Mejak <bostjan.xperia@gmail.com>
Doc/library/asyncio-task.rst

index 9e685b176486209ed74fb397237cd99b084fa14b..29ccafee908b134024711280273bc40946f61852 100644 (file)
@@ -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.)