Skip to content

Commit a7bd4bb

Browse files
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 15bbae7 commit a7bd4bb

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
@@ -203,7 +203,7 @@ returns the list ``[0, 1, 2]``.
203203
single: mutable sequence; loop over
204204

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

0 commit comments

Comments
 (0)