summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoah Kim <noahbkim@gmail.com>2024-04-19 19:19:12 (GMT)
committerGitHub <noreply@github.com>2024-04-19 19:19:12 (GMT)
commitb624490deedc37d02e5f29d19ff5e222df3a64dd (patch)
tree90e6b2c1b1e5784fea36e1f7049d288043fbcbc0
parentab99438900c26bdbbdfb411be43d1493f3b00ab7 (diff)
downloadcpython-b624490deedc37d02e5f29d19ff5e222df3a64dd.zip
cpython-b624490deedc37d02e5f29d19ff5e222df3a64dd.tar.gz
cpython-b624490deedc37d02e5f29d19ff5e222df3a64dd.tar.bz2
Fix a typo in dictobject.c documentation (#117515)
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index c3516df..4e69641 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1876,7 +1876,7 @@ actually be smaller than the old one.
If a table is split (its keys and hashes are shared, its values are not),
then the values are temporarily copied into the table, it is resized as
a combined table, then the me_value slots in the old table are NULLed out.
-After resizing a table is always combined.
+After resizing, a table is always combined.
This function supports:
- Unicode split -> Unicode combined or Generic