summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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`.)