@@ -519,25 +519,25 @@ the encapsulation provided by classes, in which case any :term:`callable` can be
519519an :term: `annotate function `.
520520
521521To provide the :attr: `~Format.VALUE `, :attr: `~Format.STRING `, or
522- :attr: `~Format.FORWARDREF ` formats directly, an :ref : `annotate function ` must provide
522+ :attr: `~Format.FORWARDREF ` formats directly, an :term : `annotate function ` must provide
523523the following attribute:
524- - A callable ``__call__ `` with signature ``__call__(format, /) -> dict ``, that does not
524+ * A callable ``__call__ `` with signature ``__call__(format, /) -> dict ``, that does not
525525raise a :err: `NotImplementedError ` when called with a supported format.
526526
527527To provide the :attr: `~Format.VALUE_WITH_FAKE_GLOBALS ` format, which is used to
528528automatically generate :attr: `~Format.STRING ` or :attr: `~Format.FORWARDREF ` if they are
529529not supported directly, :term: `annotate functions <annotate function> ` must provide the
530530following attributes:
531- - A callable ``__call__ `` with signature ``__call__(format, /) -> dict ``, that does not
531+ * A callable ``__call__ `` with signature ``__call__(format, /) -> dict ``, that does not
532532raise a :err: `NotImplementedError ` when called with
533533:attr: `~Format.VALUE_WITH_FAKE_GLOBALS `.
534- - A :ref: `code object <code-objects >` ``__code__ `` containing the compiled code for the
534+ * A :ref: `code object <code-objects >` ``__code__ `` containing the compiled code for the
535535annotate function.
536- - Optional: A tuple of the function's positional defaults ``__kwdefaults__ ``, if the
536+ * Optional: A tuple of the function's positional defaults ``__kwdefaults__ ``, if the
537537function represented by ``__code__ `` uses any positional defaults.
538- - Optional: A dict of the function's keyword defaults ``__defaults__ ``, if the function
538+ * Optional: A dict of the function's keyword defaults ``__defaults__ ``, if the function
539539represented by ``__code__ `` uses any keyword defaults.
540- - Optional: All other :ref: `function attributes <inspect-types >`.
540+ * Optional: All other :ref: `function attributes <inspect-types >`.
541541
542542.. code-block :: python
543543
0 commit comments