Fixed typo (#32327)

The heading for XOR labeled "eXclusive or" was changed to "exclusive or".
This commit is contained in:
absentMindedDeveloper
2018-11-14 03:36:09 -08:00
committed by Aditya
parent e79a399969
commit 316b0e7d6d

View File

@ -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")** </br>
**XOR ("exclusive or")** </br>
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.