Skip to content

Commit 51ddab8

Browse files
authored
Doc: Add missing forward reference in the tutorial. (GH-13499)
1 parent 05f1641 commit 51ddab8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/tutorial/controlflow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,9 +482,9 @@ When a final formal parameter of the form ``**name`` is present, it receives a
482482
dictionary (see :ref:`typesmapping`) containing all keyword arguments except for
483483
those corresponding to a formal parameter. This may be combined with a formal
484484
parameter of the form ``*name`` (described in the next subsection) which
485-
receives a tuple containing the positional arguments beyond the formal parameter
486-
list. (``*name`` must occur before ``**name``.) For example, if we define a
487-
function like this::
485+
receives a :ref:`tuple <tut-tuples>` containing the positional
486+
arguments beyond the formal parameter list. (``*name`` must occur
487+
before ``**name``.) For example, if we define a function like this::
488488

489489
def cheeseshop(kind, *arguments, **keywords):
490490
print("-- Do you have any", kind, "?")

0 commit comments

Comments
 (0)