Orthographical fix (GH-13418)

Add a missing comma.
(cherry picked from commit 1d5bdef550)

Co-authored-by: Boštjan Mejak <bostjan.xperia@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-05-19 02:13:28 -07:00 committed by GitHub
parent 951b161857
commit f81b33bada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ be executed::
>>> main() >>> main()
<coroutine object main at 0x1053bb7c8> <coroutine object main at 0x1053bb7c8>
To actually run a coroutine asyncio provides three main mechanisms: To actually run a coroutine, asyncio provides three main mechanisms:
* The :func:`asyncio.run` function to run the top-level * The :func:`asyncio.run` function to run the top-level
entry point "main()" function (see the above example.) entry point "main()" function (see the above example.)