From 06a1c8dfa08c5314d4dfa1c6233843dc777a860e Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 30 Jan 2015 18:02:15 -0800 Subject: [PATCH] Fix typo in a comment. --- Objects/setobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/setobject.c b/Objects/setobject.c index d36bc0b3c19..2c38bf3a65d 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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. */