@@ -600,7 +600,7 @@ Most of these attributes check the type of the assigned value:
600600 or ``None `` if unavailable.
601601
602602 * - .. attribute:: function.__defaults__
603- - A :class: `tuple ` containing default parameter values
603+ - A :class: `tuple ` containing default :term: ` parameter ` values
604604 for those parameters that have defaults,
605605 or ``None `` if no parameters have a default value.
606606
@@ -613,14 +613,15 @@ Most of these attributes check the type of the assigned value:
613613 See also: :attr: `__dict__ attributes <object.__dict__> `.
614614
615615 * - .. attribute:: function.__annotations__
616- - A :class: `dictionary <dict> ` containing annotations of parameters.
616+ - A :class: `dictionary <dict> ` containing annotations of
617+ :term: `parameters <parameter> `.
617618 The keys of the dictionary are the parameter names,
618619 and ``'return' `` for the return annotation, if provided.
619620 See also: :ref: `annotations-howto `.
620621
621622 * - .. attribute:: function.__kwdefaults__
622623 - A :class: `dictionary <dict> ` containing defaults for keyword-only
623- parameters.
624+ :term: ` parameters <parameter> ` .
624625
625626Function objects also support getting and setting arbitrary attributes, which
626627can be used, for example, to attach metadata to functions. Regular attribute
0 commit comments