]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix grammar in comment in dictobject.c (#125822)
authorArjun Singh <98927961+xylocone@users.noreply.github.com>
Tue, 22 Oct 2024 02:48:16 +0000 (08:18 +0530)
committerGitHub <noreply@github.com>
Tue, 22 Oct 2024 02:48:16 +0000 (11:48 +0900)
Objects/dictobject.c

index c4e11a3e9c0bc771ec0cf255bed850663c16e6a8..3134f6141dc9be7dfc12a736a20f0b9edd4f90b6 100644 (file)
@@ -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