diff options
author | Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> | 2021-08-31 16:01:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 16:01:17 (GMT) |
commit | 9a7ec2fcdee2da9e080ca459d4c240776df72567 (patch) | |
tree | 738bfb13ae77327e75cab5041503adaedaf83c86 /Doc/library/functions.rst | |
parent | 888d4cc06b887e77f281ba4d640e281cb4c61b7b (diff) | |
download | cpython-9a7ec2fcdee2da9e080ca459d4c240776df72567.zip cpython-9a7ec2fcdee2da9e080ca459d4c240776df72567.tar.gz cpython-9a7ec2fcdee2da9e080ca459d4c240776df72567.tar.bz2 |
bpo-44135: [docs] Fix inline markup (GH-28095)
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index fef6c62..9629ace 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -916,7 +916,7 @@ are always available. They are listed here in alphabetical order. Return ``True`` if *class* is a subclass (direct, indirect, or :term:`virtual <abstract base class>`) of *classinfo*. A class is considered a subclass of itself. *classinfo* may be a tuple of class - objects or a :ref:`types-union`, in which case return True if *class* is a + objects or a :ref:`types-union`, in which case return ``True`` if *class* is a subclass of any entry in *classinfo*. In any other case, a :exc:`TypeError` exception is raised. |