From 994d0a161eeec2377791716e8e5581f2b812dfd6 Mon Sep 17 00:00:00 2001 From: Sayali <40224101+sayaliKutwal@users.noreply.github.com> Date: Wed, 19 Dec 2018 12:36:44 +0530 Subject: [PATCH] Change the statement for OR operator (#23968) The statement 'Just like above the OR operator operates on two variables, notice that the only time the OR operator evaluates to True is when `x` & `y` negate each other' is ambiguous change it to 'Just like above the OR operator operates on two variables, notice that the only time the OR operator evaluates to False is when both `x` & `y` are False'. --- guide/english/logic/truth-tables/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/logic/truth-tables/index.md b/guide/english/logic/truth-tables/index.md index 36b4cb3619..3f8c6a9a0d 100644 --- a/guide/english/logic/truth-tables/index.md +++ b/guide/english/logic/truth-tables/index.md @@ -118,7 +118,7 @@ Here is the truth table for the OR operator | T | F | T | | T | T | T | -Just like above the OR operator operates on two variables, notice that the only time the OR operator evaluates to True is when `x` & `y` negate eachother. +Just like above the OR operator operates on two variables, notice that the only time the OR operator evaluates to False is when both `x` & `y` are False. Let's do one more, let's do the table for the Negation, this operates on one value instead of two