From 1236944ed7373c522fca6aeaae194979e43ff7d2 Mon Sep 17 00:00:00 2001 From: heijp06 Date: Sat, 12 Oct 2024 12:45:34 +0200 Subject: [PATCH] docs: typo 'These operators modifies' -> 'These operators modify'. (#918) --- concepts/numbers/about.md | 2 +- concepts/numbers/introduction.md | 2 +- exercises/concept/freelancer-rates/.docs/introduction.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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