From a6ab0714e429ed6896def35ba229189701385b76 Mon Sep 17 00:00:00 2001 From: Boopathiking Date: Sun, 9 Dec 2018 08:23:21 +0530 Subject: [PATCH] Wrongly mentioned, so interchanged the comments (#24370) --- guide/english/python/boolean-operations/index.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/guide/english/python/boolean-operations/index.md b/guide/english/python/boolean-operations/index.md index 008344595c..2b9f14d134 100644 --- a/guide/english/python/boolean-operations/index.md +++ b/guide/english/python/boolean-operations/index.md @@ -32,9 +32,9 @@ not x | if x is false, then True, else False | (3) ### `and`: - >>> True and False # Short-circuited at first argument. + >>> True and False # Second argument is evaluated. False - >>> False and True # Second argument is evaluated. + >>> False and True # Short-circuted at first argument. False >>> True and True # Second argument is evaluated. True @@ -45,3 +45,6 @@ not x | if x is false, then True, else False | (3) False >>> not False True + >>> False or False # Second argument is evaluated. + False +