diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-08-22 09:08:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 09:08:02 (GMT) |
commit | 72d5ddb930030c16851a98384b053bb99d6cd6f2 (patch) | |
tree | 95d587b222925eafeda739cc60c8951d14743c1d | |
parent | f497bbeed08e5a7f83adecf330b61fb88e9c3fa6 (diff) | |
download | cpython-72d5ddb930030c16851a98384b053bb99d6cd6f2.zip cpython-72d5ddb930030c16851a98384b053bb99d6cd6f2.tar.gz cpython-72d5ddb930030c16851a98384b053bb99d6cd6f2.tar.bz2 |
Fix grammar in Doc/tutorial/controlflow.rst (GH-21885) (#21922)
Automerge-Triggered-By: @csabella
(cherry picked from commit 0be7c216e16f0d459f1c8f6209734c9b2b82fbd4)
Co-authored-by: Denis Ovsienko <denis@ovsienko.info>
-rw-r--r-- | Doc/tutorial/controlflow.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index de2c73a..547f4ae 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -658,7 +658,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): |