summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-05-22 15:26:54 (GMT)
committerGitHub <noreply@github.com>2020-05-22 15:26:54 (GMT)
commit983b17ca1319adf9f06d5f2779a44450241eba54 (patch)
treea7b5b09a32c573c9b010e0f9bb6bb5bc334aaddf
parent51025e0c86afbf9300a18ef2dd6d6aa35a1854da (diff)
downloadcpython-983b17ca1319adf9f06d5f2779a44450241eba54.zip
cpython-983b17ca1319adf9f06d5f2779a44450241eba54.tar.gz
cpython-983b17ca1319adf9f06d5f2779a44450241eba54.tar.bz2
bpo-40730: Remove redundant 'to' (GH-20316) (GH-20318)
@ericvsmith I guess it is correct to merge it into master and not 3.9 directly? Automerge-Triggered-By: @ericvsmith (cherry picked from commit 30d5a7364db9e65ccabbdce2c20b84fe2fb233fb) Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de> Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de>
-rw-r--r--Doc/whatsnew/3.9.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 5fd0512..ebb24eb 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -605,7 +605,7 @@ Optimizations
sums = [s for s in [0] for x in data for s in [s + x]]
- Unlike to the ``:=`` operator this idiom does not leak a variable to the
+ Unlike the ``:=`` operator this idiom does not leak a variable to the
outer scope.
(Contributed by Serhiy Storchaka in :issue:`32856`.)