summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-08-31 16:25:08 (GMT)
committerGitHub <noreply@github.com>2021-08-31 16:25:08 (GMT)
commit8711b3d0ac89599fcd16edcb107169bb19a00737 (patch)
tree48aa91c54a36ad0ff966e02882b0c2f9d9cb50fc
parentc4c57e5c0eb79795d4fd1d9d8292455567c60070 (diff)
downloadcpython-8711b3d0ac89599fcd16edcb107169bb19a00737.zip
cpython-8711b3d0ac89599fcd16edcb107169bb19a00737.tar.gz
cpython-8711b3d0ac89599fcd16edcb107169bb19a00737.tar.bz2
bpo-44135: [docs] Fix inline markup (GH-28095)
(cherry picked from commit 9a7ec2fcdee2da9e080ca459d4c240776df72567) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
-rw-r--r--Doc/library/functions.rst2
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.