fix(curriculum): add missing 'does not' to augmented assignment description in line 144 (#65093)

This commit is contained in:
Remy baastin rayappan
2026-01-13 00:42:47 +05:30
committed by GitHub
parent 6df66051dd
commit 30835c882b
@@ -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