[Python-checkins] cpython: Fix typo in comment.

eric.smith python-checkins at python.org
Tue Jan 14 14:15:11 CET 2014


http://hg.python.org/cpython/rev/a3cd0859524d
changeset:   88472:a3cd0859524d
user:        Eric V. Smith <eric at trueblade.com>
date:        Tue Jan 14 08:15:03 2014 -0500
summary:
  Fix typo in comment.

files:
  Objects/setobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/setobject.c b/Objects/setobject.c
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -768,7 +768,7 @@
         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;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list