Fix typo.
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 3e91572..723679a 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -831,10 +831,10 @@
     if (!list)
         return NULL;
 
-    /* copy the itertor state */
+    /* copy the iterator state */
     tmp = *si;
     Py_XINCREF(tmp.si_set);
-    
+
     /* iterate the temporary into a list */
     for(;;) {
         PyObject *element = setiter_iternext(&tmp);