]> granicus.if.org Git - python/commitdiff
Fix typo in comment.
authorEric V. Smith <eric@trueblade.com>
Tue, 14 Jan 2014 13:15:03 +0000 (08:15 -0500)
committerEric V. Smith <eric@trueblade.com>
Tue, 14 Jan 2014 13:15:03 +0000 (08:15 -0500)
Objects/setobject.c

index fa6a6d0c80f143a847ba8127572dd356031c5ab7..34e43b92de0ca12ce5762b02b4de8144bafe0d90 100644 (file)
@@ -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;