From d4e56d1715798f47e732da4ab60985e845768501 Mon Sep 17 00:00:00 2001 From: Abdul Karim Date: Fri, 13 Feb 2026 19:31:27 +0500 Subject: [PATCH] 6.4 Operator Precedence: Add a few more words for better understanding --- src/boolean/operator_precedence.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boolean/operator_precedence.md b/src/boolean/operator_precedence.md index 78662d51..6b883b5f 100644 --- a/src/boolean/operator_precedence.md +++ b/src/boolean/operator_precedence.md @@ -14,8 +14,8 @@ boolean c = false; // just as 2 + 5 * 3 "evaluates" 5 * 3 before adding 2 // first, !b is true -// second, a && true is true -// third true || c is true. +// second, a && !b becomes a && true that is true +// third a && !b || c becomes true || c that is true. boolean result = a && !b || c; ```