]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Fix count of bullets in asyncio-task.rst (#96307)
authorzhanpon <pon.zhan@gmail.com>
Sat, 27 Aug 2022 03:50:48 +0000 (12:50 +0900)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 03:50:48 +0000 (20:50 -0700)
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.)