From 5a56e14a8c5c6219c825648f794363f635ed2541 Mon Sep 17 00:00:00 2001 From: Erik Weibust Date: Thu, 21 Nov 2024 11:14:11 -0600 Subject: [PATCH] Removed unnecessary word operator_precedence.md The word "is" was not needed or left over after an edit. Either way, I have removed it and the sentence reads better / more correctly. --- src/boolean/operator_precedence.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boolean/operator_precedence.md b/src/boolean/operator_precedence.md index 1267693..78662d5 100644 --- a/src/boolean/operator_precedence.md +++ b/src/boolean/operator_precedence.md @@ -2,7 +2,7 @@ The operators that work on booleans have a "precedence order." -This is defines an order of operations similar to mathematics, where multiplication and division happen before +This defines an order of operations similar to mathematics, where multiplication and division happen before addition and subtraction. For booleans `!` always happens first. This is followed by `&&` and then by `||`.