summaryrefslogtreecommitdiffstats
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-30 04:04:50 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-30 04:04:50 (GMT)
commit200a6157745fba7a658da53d9c8a7b85a900d565 (patch)
tree6027ac683c43a9d61229227a0d65649c195308c5 /Objects/setobject.c
parentf50417b72fa1fe34322563747a66946170525eaf (diff)
downloadcpython-200a6157745fba7a658da53d9c8a7b85a900d565.zip
cpython-200a6157745fba7a658da53d9c8a7b85a900d565.tar.gz
cpython-200a6157745fba7a658da53d9c8a7b85a900d565.tar.bz2
Issue #27125: Remove duplicated words from documentation and comments
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 3958a6c..b3ca643 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -784,7 +784,7 @@ frozenset_hash(PyObject *self)
hash *= 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. */