]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] docs: Don't use code formatting for emphasis (GH-30519) (GH-31764)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Tue, 8 Mar 2022 15:42:54 +0000 (07:42 -0800)
committerGitHub <noreply@github.com>
Tue, 8 Mar 2022 15:42:54 +0000 (07:42 -0800)
(cherry picked from commit badb637c8ce91625122d5f4d71276bfe1a8ed5e9)

Co-authored-by: William Andrea <william.j.andrea@gmail.com>
Doc/tutorial/controlflow.rst

index 589263edd3571e68d616da9b00d2079c134c908d..f6e013b23e7e58f043f68d3e51a553d1e636f987 100644 (file)
@@ -884,7 +884,7 @@ zero or more normal arguments may occur. ::
        file.write(separator.join(args))
 
 
-Normally, these ``variadic`` arguments will be last in the list of formal
+Normally, these *variadic* arguments will be last in the list of formal
 parameters, because they scoop up all remaining input arguments that are
 passed to the function. Any formal parameters which occur after the ``*args``
 parameter are 'keyword-only' arguments, meaning that they can only be used as