[Python-checkins] cpython: Fix comment typo

raymond.hettinger python-checkins at python.org
Sat Aug 1 20:07:24 CEST 2015


https://hg.python.org/cpython/rev/f6a3310d3cc9
changeset:   97180:f6a3310d3cc9
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Aug 01 11:07:11 2015 -0700
summary:
  Fix comment typo

files:
  Objects/setobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/setobject.c b/Objects/setobject.c
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -779,7 +779,7 @@
     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);
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list