summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAdorilson Bezerra <adorilson@gmail.com>2019-09-16 07:04:58 (GMT)
committerJulien Palard <julien@palard.fr>2019-09-16 07:04:58 (GMT)
commitb7af4e75657e6478920d00260c48a1a3020002fc (patch)
tree80eb4810767b98ad5fbb8f9f8d7feaa192183ba9 /Doc
parent56a45142e70a1ccf3233d43cb60c47255252e89a (diff)
downloadcpython-b7af4e75657e6478920d00260c48a1a3020002fc.zip
cpython-b7af4e75657e6478920d00260c48a1a3020002fc.tar.gz
cpython-b7af4e75657e6478920d00260c48a1a3020002fc.tar.bz2
Doc: remove duplicate word in controlflow tutorial (GH-16163)
Diffstat (limited to 'Doc')
-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 b7e003c..3730a21 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -695,7 +695,7 @@ As guidance:
* Use keyword-only when names have meaning and the function definition is
more understandable by being explicit with names or you want to prevent
users relying on the position of the argument being passed.
-* For an API, use positional-only to prevent prevent breaking API changes
+* For an API, use positional-only to prevent breaking API changes
if the parameter's name is modified in the future.
.. _tut-arbitraryargs: