From b5fabfc1aed273e33d2da278ba1e44fcc764deff Mon Sep 17 00:00:00 2001 From: William Andrea Date: Mon, 10 Jan 2022 16:12:28 -0500 Subject: [PATCH] docs: Don't use code formatting for emphasis --- Doc/tutorial/controlflow.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index fad8746014646c..27527b85603929 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -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