summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhanpon <pon.zhan@gmail.com>2022-08-27 03:50:48 (GMT)
committerGitHub <noreply@github.com>2022-08-27 03:50:48 (GMT)
commit35e4da25d4c86c891a99cae4ddbb9edb7d911e9f (patch)
treedd476bcefd1030eb2a0ffa47526dd036a6d172a9
parent5b070c0d40b0c7dd83b8c4eaa44812e9d2af14f9 (diff)
downloadcpython-35e4da25d4c86c891a99cae4ddbb9edb7d911e9f.zip
cpython-35e4da25d4c86c891a99cae4ddbb9edb7d911e9f.tar.gz
cpython-35e4da25d4c86c891a99cae4ddbb9edb7d911e9f.tar.bz2
Docs: Fix count of bullets in asyncio-task.rst (#96307)
-rw-r--r--Doc/library/asyncio-task.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index a6b638c..ffbf421 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -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.)