summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2014-01-14 13:15:03 (GMT)
committerEric V. Smith <eric@trueblade.com>2014-01-14 13:15:03 (GMT)
commit6ba5665fc7a94ca56f228e490da0a2b604f49b14 (patch)
tree11df31db40ca789470495c6592919d5a6c6666d2
parent92b7adb60d2a31177133f66a06e11c2c701851fe (diff)
downloadcpython-6ba5665fc7a94ca56f228e490da0a2b604f49b14.zip
cpython-6ba5665fc7a94ca56f228e490da0a2b604f49b14.tar.gz
cpython-6ba5665fc7a94ca56f228e490da0a2b604f49b14.tar.bz2
Fix typo in comment.
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index fa6a6d0..34e43b9 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -768,7 +768,7 @@ frozenset_hash(PyObject *self)
hash ^= ((h ^ 89869747UL) ^ (h << 16)) * 3644798167UL;
}
/* Make the final result spread-out in a different pattern
- than the algorithem for tuples or other python objects. */
+ than the algorithm for tuples or other python objects. */
hash = hash * 69069U + 907133923UL;
if (hash == -1)
hash = 590923713UL;