Skip to content

Commit 27ac6e5

Browse files
authored
docs: typo 'These operators modifies' -> 'These operators modify'. (#918)
1 parent d4b37b3 commit 27ac6e5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

concepts/numbers/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Consider also that we are only assigning the value of `width` to `length` at the
6060
Therefore, if the value of `width` changes at a later moment, it will not affect the value taken by `length`.
6161

6262
Assignment operator can be combined with the other operators(arithmetic & bitwise) known as `compound assignment` operators `+=`, `-=`, `*=`, `/=`, `%=`.
63-
These operators modifies the current value of a variable by performing an operation on it.
63+
These operators modify the current value of a variable by performing an operation on it.
6464

6565
```cpp
6666
// we start with 0 people

concepts/numbers/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Consider also that we are only assigning the value of `width` to `length` at the
6060
Therefore, if the value of `width` changes at a later moment, it will not affect the value taken by `length`.
6161

6262
Assignment operator can be combined with the other operators(arithmetic & bitwise) known as `compound assignment` operators `+=`, `-=`, `*=`, `/=`, `%=`.
63-
These operators modifies the current value of a variable by performing an operation on it.
63+
These operators modify the current value of a variable by performing an operation on it.
6464

6565
```cpp
6666
// we start with 0 people

exercises/concept/freelancer-rates/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Consider also that we are only assigning the value of `width` to `length` at the
6060
Therefore, if the value of `width` changes at a later moment, it will not affect the value taken by `length`.
6161

6262
Assignment operator can be combined with the other operators(arithmetic & bitwise) known as `compound assignment` operators `+=`, `-=`, `*=`, `/=`, `%=`.
63-
These operators modifies the current value of a variable by performing an operation on it.
63+
These operators modify the current value of a variable by performing an operation on it.
6464

6565
```cpp
6666
// we start with 0 people

0 commit comments

Comments
 (0)