[Python-checkins] docs: Don't use code formatting for emphasis (GH-30519)

JelleZijlstra webhook-mailer at python.org
Mon Mar 7 23:14:54 EST 2022


https://github.com/python/cpython/commit/badb637c8ce91625122d5f4d71276bfe1a8ed5e9
commit: badb637c8ce91625122d5f4d71276bfe1a8ed5e9
branch: main
author: William Andrea <william.j.andrea at gmail.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-03-07T20:14:47-08:00
summary:

docs: Don't use code formatting for emphasis (GH-30519)

files:
M Doc/tutorial/controlflow.rst

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 589263edd3571..f6e013b23e7e5 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



More information about the Python-checkins mailing list