Fix typo in a comment.

This commit is contained in:
Raymond Hettinger 2015-01-30 18:02:15 -08:00
parent 9d4cbcc86b
commit 06a1c8dfa0

View File

@ -681,7 +681,7 @@ frozenset_hash(PyObject *self)
hash *= (Py_uhash_t)PySet_GET_SIZE(self) + 1;
while (set_next(so, &pos, &entry)) {
/* Work to increase the bit dispersion for closely spaced hash
values. The is important because some use cases have many
values. This is important because some use cases have many
combinations of a small number of elements with nearby
hashes so that many distinct combinations collapse to only
a handful of distinct hash values. */