From a39b27cfa9770c550784d402113745c2d43815a8 Mon Sep 17 00:00:00 2001 From: ianmoura Date: Wed, 13 Feb 2019 19:57:26 -0800 Subject: [PATCH] Fixed spelling and grammar issues (#32678) Edited spelling and grammar Added to description of OR Edited capitalization of "True" and "False" for consistency --- guide/english/logic/logical-operators/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/logic/logical-operators/index.md b/guide/english/logic/logical-operators/index.md index d682808658..58d7ed96d0 100644 --- a/guide/english/logic/logical-operators/index.md +++ b/guide/english/logic/logical-operators/index.md @@ -25,7 +25,7 @@ P||Q returns True if at least one of P or Q (or both P and Q) is True. Only retu | F | F | F | ## Negation a.k.a. "NOT" (!) -Returns the opposite value. Ex. if P is true, then !P is false, and if P is false, then !P is true. This is the only logical operator that works on only one input, which makes it a unary operator. +Returns the opposite value. Ex. if P is true, then !P is False, and if P is False, then !P is true. This is the only logical operator that works on only one input, which makes it a unary operator. | P | Q | NOT(P) | NOT(Q) | |---|---|---|---| @@ -53,7 +53,7 @@ Only returns False when P is True and Q is False. Otherwise the implication is T Note: Implications are often used for direct mathematical proofs. P represents the hypothesis, while Q is the conclusion. -The only time the conditional is false is when a true value leads to a false value. +The only time the conditional is False is when a True value leads to a False value. | P | Q | IF(P,Q) | |---|---|---|