]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Fix count of bullets in asyncio-task.rst (GH-96307) (#96330)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 27 Aug 2022 13:26:42 +0000 (06:26 -0700)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 13:26:42 +0000 (14:26 +0100)
(cherry picked from commit 35e4da25d4c86c891a99cae4ddbb9edb7d911e9f)

Co-authored-by: zhanpon <pon.zhan@gmail.com>
Co-authored-by: zhanpon <pon.zhan@gmail.com>
Doc/library/asyncio-task.rst

index a6b638c1124094e238d132c6f8decfe1ba1e0742..ffbf421bae5e34a2bfeb9ba781a6847cca5e2dba 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 the following mechanisms:
 
 * The :func:`asyncio.run` function to run the top-level
   entry point "main()" function (see the above example.)