Doc: Add missing forward reference in the tutorial. (GH-13499)
authorJulien Palard <julien@palard.fr>
Tue, 28 May 2019 13:10:23 +0000 (15:10 +0200)
committerGitHub <noreply@github.com>
Tue, 28 May 2019 13:10:23 +0000 (15:10 +0200)
Doc/tutorial/controlflow.rst

index 905734539c685171f51f212dd08154c856e02293..cfb9645e0da1e1266eeb5287a2973bfa0037913a 100644 (file)
@@ -482,9 +482,9 @@ When a final formal parameter of the form ``**name`` is present, it receives a
 dictionary (see :ref:`typesmapping`) containing all keyword arguments except for
 those corresponding to a formal parameter.  This may be combined with a formal
 parameter of the form ``*name`` (described in the next subsection) which
-receives a tuple containing the positional arguments beyond the formal parameter
-list.  (``*name`` must occur before ``**name``.) For example, if we define a
-function like this::
+receives a :ref:`tuple <tut-tuples>` containing the positional
+arguments beyond the formal parameter list.  (``*name`` must occur
+before ``**name``.) For example, if we define a function like this::
 
    def cheeseshop(kind, *arguments, **keywords):
        print("-- Do you have any", kind, "?")