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 `||`.