From: Kirill Podoprigora Date: Fri, 19 Jul 2024 07:30:01 +0000 (+0300) Subject: Docs: Fix typo in description of ``INTRINSIC_ASYNC_GEN_WRAP`` (#122004) X-Git-Tag: v3.14.0a1~1063 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98e5bdef0ef59695371ec8a8486bb55ccf2b0638;p=thirdparty%2FPython%2Fcpython.git Docs: Fix typo in description of ``INTRINSIC_ASYNC_GEN_WRAP`` (#122004) --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index e932b865a825..56712e294bbe 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1727,7 +1727,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 |