summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorArjun Singh <98927961+xylocone@users.noreply.github.com>2024-10-22 02:48:16 (GMT)
committerGitHub <noreply@github.com>2024-10-22 02:48:16 (GMT)
commit03f9264ecef4b1df5e71586327a04ec3b9331cbe (patch)
treedd89d8aab8108976e58b7e3fb001577623c8f8a9 /Objects
parentd0bfff47fb2aea9272b56ac05984eaacc32379cc (diff)
downloadcpython-03f9264ecef4b1df5e71586327a04ec3b9331cbe.zip
cpython-03f9264ecef4b1df5e71586327a04ec3b9331cbe.tar.gz
cpython-03f9264ecef4b1df5e71586327a04ec3b9331cbe.tar.bz2
fix grammar in comment in dictobject.c (#125822)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index c4e11a3..3134f61 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -34,7 +34,7 @@ layout:
dk_indices is actual hashtable. It holds index in entries, or DKIX_EMPTY(-1)
or DKIX_DUMMY(-2).
-Size of indices is dk_size. Type of each index in indices is vary on dk_size:
+Size of indices is dk_size. Type of each index in indices varies with dk_size:
* int8 for dk_size <= 128
* int16 for 256 <= dk_size <= 2**15