diff --git a/guide/english/logic/logical-operators/index.md b/guide/english/logic/logical-operators/index.md index 46f3435cda..cf2cdf53eb 100644 --- a/guide/english/logic/logical-operators/index.md +++ b/guide/english/logic/logical-operators/index.md @@ -34,7 +34,7 @@ Returns the opposite value. Ex. if A is true, then !A is false, and if A is fals | t| t | f |f| | t| f | f |t| -**XOR ("eXclusive or")**
+**XOR ("exclusive or")**
Is known as **exclusive or**. Similar to OR, but returns False if both A and B are true. That is, XOR returns true if one and only one of A or B is True. Note: Xor is unique among the logical operators because by combining several together you can form all of the other logical operators using only Xor.