diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-31 05:46:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-31 05:46:35 (GMT) |
commit | 6a94f4c9730a0a8d94cc497b19f08601668b1124 (patch) | |
tree | bac332afba5fdb0fff73eef9873dbfcee719f521 /Doc | |
parent | faf8068dd01c8eee7f6ea3f9e608126bf2034dc1 (diff) | |
download | cpython-6a94f4c9730a0a8d94cc497b19f08601668b1124.zip cpython-6a94f4c9730a0a8d94cc497b19f08601668b1124.tar.gz cpython-6a94f4c9730a0a8d94cc497b19f08601668b1124.tar.bz2 |
Fixes typo in asyncio.TaskGroup context manager code example (GH-101449)
(cherry picked from commit ef09bf63d22b2efe5c0e9a2b9f25a9bec2ba1db0)
Co-authored-by: Ben <22038077+bcla22@users.noreply.github.com>
Diffstat (limited to 'Doc')
-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 bf922fa..24e43c3 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -121,7 +121,7 @@ To actually run a coroutine, asyncio provides the following mechanisms: print(f"started at {time.strftime('%X')}") - # The wait is implicit when the context manager exits. + # The await is implicit when the context manager exits. print(f"finished at {time.strftime('%X')}") |