Fix a code snippet typo in asyncio docs (#108427)

This commit is contained in:
A 2023-08-25 00:27:54 +08:00 committed by GitHub
parent b7808820b1
commit 7f31676340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -592,7 +592,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