Fixes typo in asyncio.TaskGroup context manager code example (#101449)

This commit is contained in:
Ben 2023-01-31 00:36:40 -05:00 committed by GitHub
parent 04ab767d28
commit ef09bf63d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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')}")