From 30835c882b1476a03b6d1b8b2b784d9fb4a20b63 Mon Sep 17 00:00:00 2001 From: Remy baastin rayappan <150592195+remy-baastin@users.noreply.github.com> Date: Tue, 13 Jan 2026 00:42:47 +0530 Subject: [PATCH] fix(curriculum): add missing 'does not' to augmented assignment description in line 144 (#65093) --- .../6839b3295323f563efc68f5c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-numbers-and-mathematical-operations/6839b3295323f563efc68f5c.md b/curriculum/challenges/english/blocks/lecture-numbers-and-mathematical-operations/6839b3295323f563efc68f5c.md index 59eab4bc108..4644847e0f6 100644 --- a/curriculum/challenges/english/blocks/lecture-numbers-and-mathematical-operations/6839b3295323f563efc68f5c.md +++ b/curriculum/challenges/english/blocks/lecture-numbers-and-mathematical-operations/6839b3295323f563efc68f5c.md @@ -141,7 +141,7 @@ If you're wondering if increment and decrement operators (`++` and  `--`) work Instead of `x++`, you can simply write `x += 1`, which makes it obvious that you're incrementing the value of `x` by `1`. -Writing `++x` in Python just applies the unary plus twice, and increment anything: +Writing `++x` in Python just applies the unary plus twice, and does not increment anything: ```python my_var = 5