]> granicus.if.org Git - python/commitdiff
bpo-29709: Improve Boolean Operations documentation (#433) (#437)
authorMariatta <Mariatta@users.noreply.github.com>
Fri, 3 Mar 2017 21:24:13 +0000 (13:24 -0800)
committerGitHub <noreply@github.com>
Fri, 3 Mar 2017 21:24:13 +0000 (13:24 -0800)
(cherry picked from commit 8eb531d9db0861e14222445fcaebe1a373bba170)

Doc/library/stdtypes.rst

index 9a4f42caa408a583f91ea49b11c03ba3b7c2dd87..6729a20a9c2ecca8d60a49c3129e048358f0d7ab 100644 (file)
@@ -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