Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e1af28

Browse files
committed
Fix typo.
1 parent 207d229 commit 0e1af28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/setobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -831,10 +831,10 @@ setiter_reduce(setiterobject *si)
831831
if (!list)
832832
return NULL;
833833

834-
/* copy the itertor state */
834+
/* copy the iterator state */
835835
tmp = *si;
836836
Py_XINCREF(tmp.si_set);
837-
837+
838838
/* iterate the temporary into a list */
839839
for(;;) {
840840
PyObject *element = setiter_iternext(&tmp);

0 commit comments

Comments
 (0)