summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-03-03 21:16:29 (GMT)
committerGitHub <noreply@github.com>2017-03-03 21:16:29 (GMT)
commit8eb531d9db0861e14222445fcaebe1a373bba170 (patch)
tree6220c15e24e06e433e8360f7d22e131e512b5df1
parent5dfccb06dc513ae67fac5fee66356ad58a4de170 (diff)
downloadcpython-8eb531d9db0861e14222445fcaebe1a373bba170.zip
cpython-8eb531d9db0861e14222445fcaebe1a373bba170.tar.gz
cpython-8eb531d9db0861e14222445fcaebe1a373bba170.tar.bz2
bpo-29709: Improve Boolean Operations documentation (#433)
Change False into false, and True into true.
-rw-r--r--Doc/library/stdtypes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index d13fc3d..4433312 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -108,11 +108,11 @@ Notes:
(1)
This is a short-circuit operator, so it only evaluates the second
- argument if the first one is :const:`False`.
+ argument if the first one is false.
(2)
This is a short-circuit operator, so it only evaluates the second
- argument if the first one is :const:`True`.
+ argument if the first one is true.
(3)
``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is