Doc: remove duplicate word in controlflow tutorial (GH-16163)

(cherry picked from commit b7af4e7565)

Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-09-16 00:13:14 -07:00 committed by GitHub
parent 322309efe6
commit 817227ebd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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: