summaryrefslogtreecommitdiffstats
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-08-01 18:07:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-08-01 18:07:11 (GMT)
commita286a51ae1a94cd85f7aee0bb55e44a363761325 (patch)
treecdaa984847ada70e6db0c89a6d4a4160bbaf12fb /Objects/setobject.c
parent36c0500990a383a47228855bae712595f7f5e1d5 (diff)
downloadcpython-a286a51ae1a94cd85f7aee0bb55e44a363761325.zip
cpython-a286a51ae1a94cd85f7aee0bb55e44a363761325.tar.gz
cpython-a286a51ae1a94cd85f7aee0bb55e44a363761325.tar.bz2
Fix comment typo
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index d638c13..24424ad 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -779,7 +779,7 @@ frozenset_hash(PyObject *self)
for (entry = so->table; entry <= &so->table[so->mask]; entry++)
hash ^= _shuffle_bits(entry->hash);
- /* Remove the effect of an odd number NULL entries */
+ /* Remove the effect of an odd number of NULL entries */
if ((so->mask + 1 - so->fill) & 1)
hash ^= _shuffle_bits(0);