[Python-checkins] bpo-44135: [docs] Fix inline markup (GH-28095)

ambv webhook-mailer at python.org
Tue Aug 31 12:01:22 EDT 2021


https://github.com/python/cpython/commit/9a7ec2fcdee2da9e080ca459d4c240776df72567
commit: 9a7ec2fcdee2da9e080ca459d4c240776df72567
branch: main
author: Ken Jin <28750310+Fidget-Spinner at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-08-31T18:01:17+02:00
summary:

bpo-44135: [docs] Fix inline markup (GH-28095)

files:
M Doc/library/functions.rst

diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index fef6c6292f95c..9629acec2bc72 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.
 



More information about the Python-checkins mailing list