]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
docs: Don't use code formatting for emphasis (GH-30519)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 8 Mar 2022 04:35:54 +0000 (20:35 -0800)
committerGitHub <noreply@github.com>
Tue, 8 Mar 2022 04:35:54 +0000 (20:35 -0800)
(cherry picked from commit badb637c8ce91625122d5f4d71276bfe1a8ed5e9)

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

index 08202f0344ea34166fa60eea0e7797bfa117aa1e..289d44239822b95105225700371f263565f9d152 100644 (file)
@@ -710,7 +710,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