summaryrefslogtreecommitdiff
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-03-10 15:25:14 -0800
committerGitHub <noreply@github.com>2018-03-10 15:25:14 -0800
commit3ca5efcef53cdafa74f7acafd7bed7f878e7e584 (patch)
tree2c707c84aba391101cf0d720cf94a6a934deaad9 /Doc/tutorial
parent5506d603021518eaaa89e7037905f7a698c5e95c (diff)
downloadcpython-git-3ca5efcef53cdafa74f7acafd7bed7f878e7e584.tar.gz
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 83d7062d2dc5eacfef578e072bca4747c346fdae) Co-authored-by: Steven M. Vascellaro <S.Vascellaro@gmail.com>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/controlflow.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 36b093950e..30ef159f8b 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -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')::
range(5, 10)
- 5 through 9
+ 5, 6, 7, 8, 9
range(0, 10, 3)
0, 3, 6, 9