From 3c5ef03e6f204c7a7c00ec9d59dc86501f5489bf Mon Sep 17 00:00:00 2001 From: Anirudh Mishra <118364679+anirudhxmishra@users.noreply.github.com> Date: Mon, 19 Jan 2026 02:04:01 +0530 Subject: [PATCH] fix(curriculum): correct grammar in JavaScript review comment (#65292) --- .../blocks/review-javascript-math/6723c463e51a2d9b747d7529.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-javascript-math/6723c463e51a2d9b747d7529.md b/curriculum/challenges/english/blocks/review-javascript-math/6723c463e51a2d9b747d7529.md index b4b0f7e7dde..b8cdb8dab27 100644 --- a/curriculum/challenges/english/blocks/review-javascript-math/6723c463e51a2d9b747d7529.md +++ b/curriculum/challenges/english/blocks/review-javascript-math/6723c463e51a2d9b747d7529.md @@ -181,7 +181,7 @@ const score = 87; if (score >= 90) { console.log('You got an A'); } else if (score >= 80) { - console.log('You got a B'); // You got an B + console.log('You got a B'); // You got a B } else if (score >= 70) { console.log('You got a C'); } else {