controlflow: Use full example for "5 through 9" (GH-5907)

Replace example result of "5 through 9" with complete list: "5, 6, 7, 8, 9".
This format is more consistent with the surrounding examples.
(cherry picked from commit 83d7062d2d)

Co-authored-by: Steven M. Vascellaro <S.Vascellaro@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-03-10 15:25:14 -08:00 committed by GitHub
parent 5506d60302
commit 3ca5efcef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ is possible to let the range start at another number, or to specify a different
increment (even negative; sometimes this is called the 'step'):: increment (even negative; sometimes this is called the 'step')::
range(5, 10) range(5, 10)
5 through 9 5, 6, 7, 8, 9
range(0, 10, 3) range(0, 10, 3)
0, 3, 6, 9 0, 3, 6, 9