]> granicus.if.org Git - python/commitdiff
bpo-29709: Improve Boolean Operations documentation (#433)
authorMariatta <Mariatta@users.noreply.github.com>
Fri, 3 Mar 2017 21:16:29 +0000 (13:16 -0800)
committerGitHub <noreply@github.com>
Fri, 3 Mar 2017 21:16:29 +0000 (13:16 -0800)
Change False into false, and True into true.

Doc/library/stdtypes.rst

index d13fc3d9208d349428b9cfad8a8b756e603afef4..4433312fb204ec0ed61d87b542872db11d110080 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