diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index be7dd6a9d9d406..efd7a5ae00269c 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -409,8 +409,9 @@ What is the difference between arguments and parameters? :term:`Parameters ` are defined by the names that appear in a function definition, whereas :term:`arguments ` are the values -actually passed to a function when calling it. Parameters define what types of -arguments a function can accept. For example, given the function definition:: +actually passed to a function when calling it. Parameters define what +:term:`kind of arguments ` a function can accept. For +example, given the function definition:: def func(foo, bar=None, **kwargs): pass