Docs: Fix count of bullets in asyncio-task.rst (#96307)

This commit is contained in:
zhanpon 2022-08-27 12:50:48 +09:00 committed by GitHub
parent 5b070c0d40
commit 35e4da25d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.)