From: Raymond Hettinger Date: Sat, 1 Aug 2015 18:07:11 +0000 (-0700) Subject: Fix comment typo X-Git-Tag: v3.6.0a1~1866 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a286a51ae1a94cd85f7aee0bb55e44a363761325;p=python Fix comment typo --- diff --git a/Objects/setobject.c b/Objects/setobject.c index d638c13665..24424ad8b9 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);