summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-09-09 17:10:04 (GMT)
committerGitHub <noreply@github.com>2021-09-09 17:10:04 (GMT)
commit20f6d485ec64aa0f228b902e4c519a423276d90f (patch)
tree9d044beb6830635e58e43921b6acfcd9531054ca
parent23c46778d65870784cb6d4de30f43aac62d71e73 (diff)
downloadcpython-20f6d485ec64aa0f228b902e4c519a423276d90f.zip
cpython-20f6d485ec64aa0f228b902e4c519a423276d90f.tar.gz
cpython-20f6d485ec64aa0f228b902e4c519a423276d90f.tar.bz2
Fix minor typo in 3.10.rst (GH-28253) (GH-28259)
(cherry picked from commit 73668541357caa813e7daa8792fab6fdf755a07f) Co-authored-by: D.Lintin <diantolintin3@gmail.com> Co-authored-by: D.Lintin <diantolintin3@gmail.com>
-rw-r--r--Doc/whatsnew/3.10.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index dbf8923..5a5f4a3 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -1843,7 +1843,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.