From 5c4864ae00ce86faf415b4b29bdf6ed10bb5582e Mon Sep 17 00:00:00 2001 From: Sayali <40224101+sayaliKutwal@users.noreply.github.com> Date: Thu, 1 Nov 2018 13:31:21 +0530 Subject: [PATCH] change answer to f (#23918) In logical AND operation ( t & f ) the result should be f not t --- guide/english/logic/logical-operators/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/logic/logical-operators/index.md b/guide/english/logic/logical-operators/index.md index d5dfa862ea..b38339431d 100644 --- a/guide/english/logic/logical-operators/index.md +++ b/guide/english/logic/logical-operators/index.md @@ -11,7 +11,7 @@ A&&B returns True if both A and B are True. If either A or B (or both) are False | f| t | f | | f| f | f | | t| t | t | -| t| f | t | +| t| f | f | **OR (||)**