summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorlaike9m <laike9m@users.noreply.github.com>2020-03-24 01:03:06 (GMT)
committerGitHub <noreply@github.com>2020-03-24 01:03:06 (GMT)
commit70d9d74411c121896820e137ecd56e55c087adcc (patch)
treeeb2616c26f9324d7719888e526adcab9898a9da0 /Doc
parent188078c39dec24aa5b3f2073bdc9a68ebaae42de (diff)
downloadcpython-70d9d74411c121896820e137ecd56e55c087adcc.zip
cpython-70d9d74411c121896820e137ecd56e55c087adcc.tar.gz
cpython-70d9d74411c121896820e137ecd56e55c087adcc.tar.bz2
Updated documentation for FOR_ITER (GH-19113)
Added a comma to make the sentence less confusing.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/dis.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 020942b..2e1cded 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -986,7 +986,7 @@ All of the following opcodes use their arguments.
TOS is an :term:`iterator`. Call its :meth:`~iterator.__next__` method. If
this yields a new value, push it on the stack (leaving the iterator below
- it). If the iterator indicates it is exhausted TOS is popped, and the byte
+ it). If the iterator indicates it is exhausted, TOS is popped, and the byte
code counter is incremented by *delta*.