From: Arjun Singh <98927961+xylocone@users.noreply.github.com> Date: Tue, 22 Oct 2024 02:48:16 +0000 (+0530) Subject: fix grammar in comment in dictobject.c (#125822) X-Git-Tag: v3.14.0a2~335 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=03f9264ecef4b1df5e71586327a04ec3b9331cbe;p=thirdparty%2FPython%2Fcpython.git fix grammar in comment in dictobject.c (#125822) --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index c4e11a3e9c0b..3134f6141dc9 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