From: Eric V. Smith Date: Tue, 14 Jan 2014 13:15:03 +0000 (-0500) Subject: Fix typo in comment. X-Git-Tag: v3.4.0b3~149 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ba5665fc7a94ca56f228e490da0a2b604f49b14;p=thirdparty%2FPython%2Fcpython.git Fix typo in comment. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index fa6a6d0c80f1..34e43b92de0c 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;