Skip to content

Commit 5e980f0

Browse files
andresdelfinoMariatta
authored andcommitted
[2.7] Use 'for example' instead of 'in other words' in compound statement doc (GH-8401)
(cherry picked from commit 6921ef7) Co-authored-by: Andrés Delfino <[email protected]>
1 parent 2bea771 commit 5e980f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/reference/compound_stmts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ effect of Pascal's ``for i := a to b do``; e.g., ``range(3)`` returns the list
185185
single: mutable sequence; loop over
186186

187187
There is a subtlety when the sequence is being modified by the loop (this can
188-
only occur for mutable sequences, i.e. lists). An internal counter is used to
188+
only occur for mutable sequences, e.g. lists). An internal counter is used to
189189
keep track of which item is used next, and this is incremented on each
190190
iteration. When this counter has reached the length of the sequence the loop
191191
terminates. This means that if the suite deletes the current (or a previous)

0 commit comments

Comments
 (0)