diff --git a/concepts/numbers/about.md b/concepts/numbers/about.md index 8ef58f28f..c0b79e0d6 100644 --- a/concepts/numbers/about.md +++ b/concepts/numbers/about.md @@ -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 diff --git a/concepts/numbers/introduction.md b/concepts/numbers/introduction.md index a97f047d8..be17bde75 100644 --- a/concepts/numbers/introduction.md +++ b/concepts/numbers/introduction.md @@ -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 diff --git a/exercises/concept/freelancer-rates/.docs/introduction.md b/exercises/concept/freelancer-rates/.docs/introduction.md index a97f047d8..be17bde75 100644 --- a/exercises/concept/freelancer-rates/.docs/introduction.md +++ b/exercises/concept/freelancer-rates/.docs/introduction.md @@ -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