From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 2 Jan 2023 11:57:51 +0000 (-0800) Subject: fix `grammer` -> `grammar` typo in expressions.rst (GH-100683) X-Git-Tag: v3.11.2~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b99ac1dbc081e4f2d2e68906e9c7c535e628611a;p=thirdparty%2FPython%2Fcpython.git fix `grammer` -> `grammar` typo in expressions.rst (GH-100683) (cherry picked from commit 7feb6d2f85d69fbabfc0598d8947124883167f12) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Automerge-Triggered-By: GH:AlexWaygood --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 655d19969a58..ea9db1824c70 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -455,7 +455,7 @@ function. The execution starts when one of the generator's methods is called. At that time, the execution proceeds to the first yield expression, where it is suspended again, returning the value of :token:`~python-grammar:expression_list` to the generator's caller, -or ``None`` if :token:`~python-grammer:expression_list` is omitted. +or ``None`` if :token:`~python-grammar:expression_list` is omitted. By suspended, we mean that all local state is retained, including the current bindings of local variables, the instruction pointer, the internal evaluation stack, and the state of any exception handling.