summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorWilliam Andrea <william.j.andrea@gmail.com>2022-03-08 04:14:47 (GMT)
committerGitHub <noreply@github.com>2022-03-08 04:14:47 (GMT)
commitbadb637c8ce91625122d5f4d71276bfe1a8ed5e9 (patch)
treeca4efff5e0c126e5bc66806df0ea0b59755f7108 /Doc
parentab014978aef303ac60465c9010505d798dc34df8 (diff)
downloadcpython-badb637c8ce91625122d5f4d71276bfe1a8ed5e9.zip
cpython-badb637c8ce91625122d5f4d71276bfe1a8ed5e9.tar.gz
cpython-badb637c8ce91625122d5f4d71276bfe1a8ed5e9.tar.bz2
docs: Don't use code formatting for emphasis (GH-30519)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/controlflow.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 589263e..f6e013b 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