From dc9b3713179b9e1b9f1b7f8d1aecd6b013599da2 Mon Sep 17 00:00:00 2001 From: Dikshant Bali Date: Sun, 11 Nov 2018 13:37:55 +0530 Subject: [PATCH] index.md (#24553) * Update index.md * removed redundant text made by contributor --- guide/english/logic/algebra-of-logic/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/logic/algebra-of-logic/index.md b/guide/english/logic/algebra-of-logic/index.md index 41cb5e18ed..36291db1bd 100644 --- a/guide/english/logic/algebra-of-logic/index.md +++ b/guide/english/logic/algebra-of-logic/index.md @@ -12,7 +12,7 @@ Boolean algebra is fundamental to the development of digital electronics. It is The three basic operations in Boolean Algebra are `AND`, `OR`, and `NOT`. Consider two boolean variables `x` and `y`: - `x AND y` is true if and only if both `x` and `y` are true -- `x OR y` is true if and only if either of `x`, `y` are true. If `x`, `y` are both true, `x OR y` is still true +- `x OR y` is true if either of `x` or `y` are true - `NOT x` is true if and only if `x` is false and vice versa `NOT` of boolean statements can be refactored to apply directly to each variable. Consider the following :