]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: remove duplicate word in controlflow tutorial (GH-16163)
authorAdorilson Bezerra <adorilson@gmail.com>
Mon, 16 Sep 2019 07:04:58 +0000 (04:04 -0300)
committerJulien Palard <julien@palard.fr>
Mon, 16 Sep 2019 07:04:58 +0000 (09:04 +0200)
Doc/tutorial/controlflow.rst

index b7e003c550188a25837ccbeaa42ad643ff38eabb..3730a215d748b32288886334590d3b418f2a55c8 100644 (file)
@@ -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: