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'.
This commit is contained in:
Sayali
2018-12-19 12:36:44 +05:30
committed by Manish Giri
parent fe2d44a6ad
commit 994d0a161e

View File

@ -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