diff options
author | zhanpon <pon.zhan@gmail.com> | 2022-08-27 03:50:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 03:50:48 (GMT) |
commit | 35e4da25d4c86c891a99cae4ddbb9edb7d911e9f (patch) | |
tree | dd476bcefd1030eb2a0ffa47526dd036a6d172a9 | |
parent | 5b070c0d40b0c7dd83b8c4eaa44812e9d2af14f9 (diff) | |
download | cpython-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.rst | 2 |
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.) |