]> granicus.if.org Git - python/commitdiff
Fix comment typo
authorRaymond Hettinger <python@rcn.com>
Sat, 1 Aug 2015 18:07:11 +0000 (11:07 -0700)
committerRaymond Hettinger <python@rcn.com>
Sat, 1 Aug 2015 18:07:11 +0000 (11:07 -0700)
Objects/setobject.c

index d638c136651ddcabd4b774a3a9e4d9cfee4de058..24424ad8b982643d60569e80c312d7b67940e9f8 100644 (file)
@@ -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);