]> granicus.if.org Git - python/commitdiff
Orthographical fix (GH-13418)
authorBoštjan Mejak <bostjan.xperia@gmail.com>
Sun, 19 May 2019 09:01:36 +0000 (11:01 +0200)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 19 May 2019 09:01:36 +0000 (02:01 -0700)
Add a missing comma.

Doc/library/asyncio-task.rst

index e7cf39b2bccd5f7803fee070ab1bbe8f6a3b57e8..bb064bd93deaf7ab74ea65304ed5594b0f28d995 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.)