diff options
author | D.Lintin <diantolintin3@gmail.com> | 2021-09-09 16:02:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 16:02:01 (GMT) |
commit | 73668541357caa813e7daa8792fab6fdf755a07f (patch) | |
tree | ee19b5606b3c09730dcb25b58aefcf8525dd2b2e | |
parent | 06148b1870fceb1a21738761b8e1ac3bf654319b (diff) | |
download | cpython-73668541357caa813e7daa8792fab6fdf755a07f.zip cpython-73668541357caa813e7daa8792fab6fdf755a07f.tar.gz cpython-73668541357caa813e7daa8792fab6fdf755a07f.tar.bz2 |
Fix minor typo in 3.10.rst (GH-28253)
-rw-r--r-- | Doc/whatsnew/3.10.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 8b0d38b..ad005dc 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1847,7 +1847,7 @@ Changes in the Python syntax * Deprecation warning is now emitted when compiling previously valid syntax if the numeric literal is immediately followed by a keyword (like in ``0in x``). - If future releases it will be changed to syntax warning, and finally to a + In future releases it will be changed to syntax warning, and finally to a syntax error. To get rid of the warning and make the code compatible with future releases just add a space between the numeric literal and the following keyword. |