]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix "FSTRING_MIDDLE" typo in py312 "What's New" (#109222)
authorDelgan <4193924+Delgan@users.noreply.github.com>
Sun, 10 Sep 2023 10:55:56 +0000 (12:55 +0200)
committerGitHub <noreply@github.com>
Sun, 10 Sep 2023 10:55:56 +0000 (10:55 +0000)
Doc/whatsnew/3.12.rst

index bdccbe1012c9e287a9d3292a5a2578c08760b384..a46c913c4997ba6d7da1c3ea0fd95e6f7c58d545 100644 (file)
@@ -1599,7 +1599,7 @@ Changes in the Python API
   functions is now changed due to the changes introduced in :pep:`701`. This
   means that ``STRING`` tokens are not emitted any more for f-strings and the
   tokens described in :pep:`701` are now produced instead: ``FSTRING_START``,
-  ``FSRING_MIDDLE`` and ``FSTRING_END`` are now emitted for f-string "string"
+  ``FSTRING_MIDDLE`` and ``FSTRING_END`` are now emitted for f-string "string"
   parts in addition to the appropriate tokens for the tokenization in the
   expression components. For example for the f-string ``f"start {1+1} end"``
   the old version of the tokenizer emitted::