]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix grammar in Doc/tutorial/controlflow.rst (GH-21885)
authorDenis Ovsienko <denis@ovsienko.info>
Wed, 19 Aug 2020 11:29:47 +0000 (12:29 +0100)
committerGitHub <noreply@github.com>
Wed, 19 Aug 2020 11:29:47 +0000 (04:29 -0700)
Automerge-Triggered-By: @csabella
Doc/tutorial/controlflow.rst

index 5d5b01d8132771f1b7f2ad1e920b880ad7c26cff..5d24a19cfc0796726952bc9b9a938a8f6d534020 100644 (file)
@@ -661,7 +661,7 @@ Finally, consider this function definition which has a potential collision betwe
         return 'name' in kwds
 
 There is no possible call that will make it return ``True`` as the keyword ``'name'``
-will always to bind to the first parameter. For example::
+will always bind to the first parameter. For example::
 
     >>> foo(1, **{'name': 2})
     Traceback (most recent call last):