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:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user