From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 19 May 2019 09:13:28 +0000 (-0700) Subject: Orthographical fix (GH-13418) X-Git-Tag: v3.7.4rc1~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f81b33badab5d83afc7ee32c37e65a5cf60ad757;p=thirdparty%2FPython%2Fcpython.git Orthographical fix (GH-13418) Add a missing comma. (cherry picked from commit 1d5bdef550d4395211fbe5f3c1444d7ea5bb54a2) Co-authored-by: BoĊĦtjan Mejak --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 9e685b176486..29ccafee908b 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.)