[3.12] Fix a code snippet typo in asyncio docs (GH-108427) (#111245)

Co-authored-by: A <5249513+Dumeng@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2023-10-24 08:37:41 +02:00 committed by GitHub
parent 38578dd665
commit b622c2dcbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -589,7 +589,7 @@ Shielding From Cancellation
is equivalent to::
res = await something()
res = await shield(something())
*except* that if the coroutine containing it is cancelled, the
Task running in ``something()`` is not cancelled. From the point