Skip to content

Commit

Permalink
Fix typo: 'These operators modifies' -> 'These operators modify'.
Browse files Browse the repository at this point in the history
  • Loading branch information
heijp06 committed Oct 11, 2024
1 parent d4b37b3 commit ffe04be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion concepts/numbers/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Consider also that we are only assigning the value of `width` to `length` at the
Therefore, if the value of `width` changes at a later moment, it will not affect the value taken by `length`.

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

```cpp
// we start with 0 people
Expand Down
2 changes: 1 addition & 1 deletion concepts/numbers/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Consider also that we are only assigning the value of `width` to `length` at the
Therefore, if the value of `width` changes at a later moment, it will not affect the value taken by `length`.

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

```cpp
// we start with 0 people
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/freelancer-rates/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Consider also that we are only assigning the value of `width` to `length` at the
Therefore, if the value of `width` changes at a later moment, it will not affect the value taken by `length`.

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

```cpp
// we start with 0 people
Expand Down

0 comments on commit ffe04be

Please sign in to comment.