Skip to content

Commit de547b0

Browse files
authored
Update controlflow.rst
1 parent 78bfc70 commit de547b0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Doc/tutorial/controlflow.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ Keyword-Only Parameters
798798
----------------------
799799

800800
To mark parameters as *keyword-only*, indicating their arguments must be passed
801-
by keyword, place parameters after an ``*`` to make them
801+
by keyword, place parameters after an ``*`` to make them
802802
*keyword-only* parameters.
803803

804804
-----------------
@@ -820,7 +820,6 @@ markers ``/`` and ``*``::
820820
>>> def combined_example(pos_only, /, standard, *, kwd_only):
821821
... print(pos_only, standard, kwd_only)
822822

823-
824823
The first function definition, ``standard_param``, the most familiar form,
825824
places no restrictions on the calling convention and arguments can be
826825
passed by position or keyword::

0 commit comments

Comments
 (0)