From: BoĊĦtjan Mejak Date: Sun, 19 May 2019 09:01:36 +0000 (+0200) Subject: Orthographical fix (GH-13418) X-Git-Tag: v3.8.0b1~304 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2;p=thirdparty%2FPython%2Fcpython.git Orthographical fix (GH-13418) Add a missing comma. --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index e7cf39b2bccd..bb064bd93dea 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -40,7 +40,7 @@ be executed:: >>> main() -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.)