summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/3.8.0a1.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/3.8.0a1.rst')
-rw-r--r--Misc/NEWS.d/3.8.0a1.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS.d/3.8.0a1.rst b/Misc/NEWS.d/3.8.0a1.rst
index 1964a83..258e7d8 100644
--- a/Misc/NEWS.d/3.8.0a1.rst
+++ b/Misc/NEWS.d/3.8.0a1.rst
@@ -1406,8 +1406,8 @@ Fix potential memory leak in ``normalizestring()``.
Change dict growth function from
``round_up_to_power_2(used*2+hashtable_size/2)`` to
-``round_up_to_power_2(used*3)``. Previously, dict is shrinked only when
-``used == 0``. Now dict has more chance to be shrinked.
+``round_up_to_power_2(used*3)``. Previously, dict is shrunk only when
+``used == 0``. Now dict has more chance to be shrunk.
..