]> granicus.if.org Git - python/commitdiff
Use 'for example' instead of 'in other words' in compound statement doc (GH-8401)
authorAndrés Delfino <adelfino@gmail.com>
Mon, 30 Jul 2018 18:44:35 +0000 (15:44 -0300)
committerMariatta <Mariatta@users.noreply.github.com>
Mon, 30 Jul 2018 18:44:35 +0000 (11:44 -0700)
Doc/reference/compound_stmts.rst

index 208b3ed20e7ec35b73fb83b8adcea15f7dcbd20f..ebb18ca0847725258e117562774ed8d0a5f5e0f3 100644 (file)
@@ -203,7 +203,7 @@ returns the list ``[0, 1, 2]``.
       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
+   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)