From 316b0e7d6d7ee17a6b21fb4f97151d3c01f2cd8a Mon Sep 17 00:00:00 2001 From: absentMindedDeveloper <35352701+absentMindedDeveloper@users.noreply.github.com> Date: Wed, 14 Nov 2018 03:36:09 -0800 Subject: [PATCH] Fixed typo (#32327) The heading for XOR labeled "eXclusive or" was changed to "exclusive or". --- guide/english/logic/logical-operators/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.