From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 27 Aug 2022 13:26:42 +0000 (-0700) Subject: Docs: Fix count of bullets in asyncio-task.rst (GH-96307) (#96330) X-Git-Tag: v3.11.0rc2~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=698df306a955fe33670d770107580418e41dd771;p=thirdparty%2FPython%2Fcpython.git Docs: Fix count of bullets in asyncio-task.rst (GH-96307) (#96330) (cherry picked from commit 35e4da25d4c86c891a99cae4ddbb9edb7d911e9f) Co-authored-by: zhanpon Co-authored-by: zhanpon --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index a6b638c11240..ffbf421bae5e 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -40,7 +40,7 @@ be executed:: >>> main() -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.)