From 8b72a0df665dad4d2adfc2675956b05b48d03990 Mon Sep 17 00:00:00 2001 From: dalgarno <32097481+dalgarno@users.noreply.github.com> Date: Fri, 6 Sep 2019 22:29:10 +0100 Subject: [PATCH] Fix typo in dict object comment --- Objects/dictobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 73956df4ab2a5b..5c0640d1dfc8a1 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -39,7 +39,7 @@ Size of indices is dk_size. Type of each index in indices is vary on dk_size: * int32 for 2**16 <= dk_size <= 2**31 * int64 for 2**32 <= dk_size -dk_entries is array of PyDictKeyEntry. It's size is USABLE_FRACTION(dk_size). +dk_entries is array of PyDictKeyEntry. Its size is USABLE_FRACTION(dk_size). DK_ENTRIES(dk) can be used to get pointer to entries. NOTE: Since negative value is used for DKIX_EMPTY and DKIX_DUMMY, type of