Skip to content

Commit a286a51

Browse files
committed
Fix comment typo
1 parent 36c0500 commit a286a51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/setobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ frozenset_hash(PyObject *self)
779779
for (entry = so->table; entry <= &so->table[so->mask]; entry++)
780780
hash ^= _shuffle_bits(entry->hash);
781781

782-
/* Remove the effect of an odd number NULL entries */
782+
/* Remove the effect of an odd number of NULL entries */
783783
if ((so->mask + 1 - so->fill) & 1)
784784
hash ^= _shuffle_bits(0);
785785

0 commit comments

Comments
 (0)