summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-07-30 19:16:35 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-07-30 19:16:35 (GMT)
commit5e980f09b624b98bc1202cdabaaa0809c8b6437e (patch)
treed652557d706cd892fe22ec4be5c442ca01feba55
parent2bea7716093012319b5e6a4260fe802b15031f21 (diff)
downloadcpython-5e980f09b624b98bc1202cdabaaa0809c8b6437e.zip
cpython-5e980f09b624b98bc1202cdabaaa0809c8b6437e.tar.gz
cpython-5e980f09b624b98bc1202cdabaaa0809c8b6437e.tar.bz2
[2.7] Use 'for example' instead of 'in other words' in compound statement doc (GH-8401)
(cherry picked from commit 6921ef7bef4eab3819b3d0fda5fa3e3b2a8c0613) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-rw-r--r--Doc/reference/compound_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 66ae530..92ce3cd 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -185,7 +185,7 @@ effect of Pascal's ``for i := a to b do``; e.g., ``range(3)`` returns the list
single: mutable sequence; loop over
There is a subtlety when the sequence is being modified by the loop (this can
- only occur for mutable sequences, i.e. lists). An internal counter is used to
+ only occur for mutable sequences, e.g. lists). An internal counter is used to
keep track of which item is used next, and this is incremented on each
iteration. When this counter has reached the length of the sequence the loop
terminates. This means that if the suite deletes the current (or a previous)