summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-09-09 10:10:04 -0700
committerPablo Galindo <pablogsal@gmail.com>2021-09-14 19:58:05 +0100
commit73af5ba83109118d6fb3367c59cacb4263143259 (patch)
tree56bcca1ad7d898d54dbe909f60eff8e5af332f5f
parenta272ffef33d956a1d5bcb4712f95490330a5c5d7 (diff)
downloadcpython-git-73af5ba83109118d6fb3367c59cacb4263143259.tar.gz
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 dbf89239d6..5a5f4a360f 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.