summaryrefslogtreecommitdiff
path: root/Doc/reference/datamodel.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-29 12:17:13 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-29 12:17:13 +0200
commit6800337ebf8604f8cf44fa22ed22e09aa49082f7 (patch)
tree76ee1d205d10dc2745a3ebb5bd73a2a2cf85919c /Doc/reference/datamodel.rst
parent516b23bf7bfbb5433baf45a1478d2469234b2296 (diff)
downloadcpython-6800337ebf8604f8cf44fa22ed22e09aa49082f7.tar.gz
Issue #19795: Improved markup of True/False constants.
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 2128ffc433..48a42cc17e 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -201,7 +201,7 @@ Ellipsis
single: True
These represent the truth values False and True. The two objects representing
- the values False and True are the only Boolean objects. The Boolean type is a
+ the values ``False`` and ``True`` are the only Boolean objects. The Boolean type is a
subtype of the integer type, and Boolean values behave like the values 0 and 1,
respectively, in almost all contexts, the exception being that when converted to
a string, the strings ``"False"`` or ``"True"`` are returned, respectively.