From 511bf95177bb0f2e927b980980059199a63414bf Mon Sep 17 00:00:00 2001 From: baba-kabira <156817235+baba-kabira@users.noreply.github.com> Date: Thu, 23 Oct 2025 17:16:10 +0530 Subject: [PATCH] Fix comments for abbreviated operators example --- Section3FirstSteps/Lec34AbbreviatingOperators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Section3FirstSteps/Lec34AbbreviatingOperators.md b/Section3FirstSteps/Lec34AbbreviatingOperators.md index 756e3b5..ae7de5b 100644 --- a/Section3FirstSteps/Lec34AbbreviatingOperators.md +++ b/Section3FirstSteps/Lec34AbbreviatingOperators.md @@ -37,8 +37,8 @@ System.out.println("30 / 3 = " + result); // -= - // result = result / 3; - result -= 2; // 10 / 2 = 8 + // result = result - 2; + result -= 2; // 10 - 2 = 8 System.out.println("10 - 2 = " + result); ``` Output