From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 19 Jul 2024 07:46:58 +0000 (+0200) Subject: [3.13] Docs: Fix typo in description of ``INTRINSIC_ASYNC_GEN_WRAP`` (GH-122004)... X-Git-Tag: v3.13.0rc1~106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3f57a17ef0878083b7cfa5f4f714e773e3ef3df;p=thirdparty%2FPython%2Fcpython.git [3.13] Docs: Fix typo in description of ``INTRINSIC_ASYNC_GEN_WRAP`` (GH-122004) (#122006) Docs: Fix typo in description of ``INTRINSIC_ASYNC_GEN_WRAP`` (GH-122004) (cherry picked from commit 98e5bdef0ef59695371ec8a8486bb55ccf2b0638) Co-authored-by: Kirill Podoprigora --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index ca215888f09a..f3b39330b8ea 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1748,7 +1748,7 @@ iterations of the loop. | ``INTRINSIC_STOPITERATION_ERROR`` | Extracts the return value from a | | | ``StopIteration`` exception. | +-----------------------------------+-----------------------------------+ - | ``INTRINSIC_ASYNC_GEN_WRAP`` | Wraps an aync generator value | + | ``INTRINSIC_ASYNC_GEN_WRAP`` | Wraps an async generator value | +-----------------------------------+-----------------------------------+ | ``INTRINSIC_UNARY_POSITIVE`` | Performs the unary ``+`` | | | operation |