summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorDiego Alberto Barriga Martínez <diegobarriga@protonmail.com>2019-09-17 16:57:55 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-17 16:57:55 (GMT)
commitb57481318e3e3cbacd398b898f9849ec8f2d7eec (patch)
tree6a8721d0067aac87ba89d5fba64b260ed77d83e5 /Doc/tutorial
parent6fbc924696b4b5097c273c06ca2d82662940e184 (diff)
downloadcpython-b57481318e3e3cbacd398b898f9849ec8f2d7eec.zip
cpython-b57481318e3e3cbacd398b898f9849ec8f2d7eec.tar.gz
cpython-b57481318e3e3cbacd398b898f9849ec8f2d7eec.tar.bz2
bpo-37904: Edition on python tutorial - section 4 (GH-16169)
A little change on first paragraph of python tutorial to be more clearly https://bugs.python.org/issue37904 Automerge-Triggered-By: @ericvsmith
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/controlflow.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 3730a21..7dfd33a 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -4,8 +4,8 @@
More Control Flow Tools
***********************
-Besides the :keyword:`while` statement just introduced, Python knows the usual
-control flow statements known from other languages, with some twists.
+Besides the :keyword:`while` statement just introduced, Python uses the usual
+flow control statements known from other languages, with some twists.
.. _tut-if: