mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): add missing 'does not' to augmented assignment description in line 144 (#65093)
This commit is contained in:
committed by
GitHub
parent
6df66051dd
commit
30835c882b
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user