cpython: Fix typo in a comment.

https://hg.python.org/cpython/rev/73c31db9fba4 changeset: 94403:73c31db9fba4 parent: 94397:c0d25de5919e user: Raymond Hettinger <python@rcn.com> date: Fri Jan 30 18:02:15 2015 -0800 summary: Fix typo in a comment. 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 @@ -681,7 +681,7 @@ 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. */ -- Repository URL: https://hg.python.org/cpython
participants (1)
-
raymond.hettinger