From e3ce3b97c47fc74be479d4632ade3b35f4ca5715 Mon Sep 17 00:00:00 2001 From: "Elton (Eddie) Hartman" Date: Sun, 30 Jul 2023 23:45:17 -0400 Subject: [PATCH 1/4] Fix typo in introduction.md in freelance-rates exercise. --- exercises/concept/freelancer-rates/.docs/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/concept/freelancer-rates/.docs/introduction.md b/exercises/concept/freelancer-rates/.docs/introduction.md index f6ff69b1..a839e65d 100644 --- a/exercises/concept/freelancer-rates/.docs/introduction.md +++ b/exercises/concept/freelancer-rates/.docs/introduction.md @@ -73,7 +73,7 @@ eggs += 3 * people; // eggs is now 6 ``` Vairables `people` & `eggs` are initialized to `0`. -Then, we add integer value `2` over the existing value `0` of the variable `people` and assigne it back to `people`. +Then, we add integer value `2` over the existing value `0` of the variable `people` and assign it back to `people`. `people` becomes `2` now. Later, we add `3` eggs for each person, which turns out to be `6` eggs in total. Now add this `6` to existing value `0` of the variable `eggs` and assigne it back to `eggs`. @@ -81,4 +81,4 @@ Now add this `6` to existing value `0` of the variable `eggs` and assigne it bac The equivalent expression would be `people = people + 2` and `eggs = eggs + (3 * people)` -[cpp_numerical_bases]: https://cplusplus.com/doc/hex/ \ No newline at end of file +[cpp_numerical_bases]: https://cplusplus.com/doc/hex/ From 1cd91f67aed02793d02e06c67fe8609860813677 Mon Sep 17 00:00:00 2001 From: "Elton (Eddie) Hartman" Date: Sun, 30 Jul 2023 23:58:00 -0400 Subject: [PATCH 2/4] Fix another typo in introduction.md in freelance-rates exercise. --- exercises/concept/freelancer-rates/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/freelancer-rates/.docs/introduction.md b/exercises/concept/freelancer-rates/.docs/introduction.md index a839e65d..6b6bb951 100644 --- a/exercises/concept/freelancer-rates/.docs/introduction.md +++ b/exercises/concept/freelancer-rates/.docs/introduction.md @@ -76,7 +76,7 @@ Vairables `people` & `eggs` are initialized to `0`. Then, we add integer value `2` over the existing value `0` of the variable `people` and assign it back to `people`. `people` becomes `2` now. Later, we add `3` eggs for each person, which turns out to be `6` eggs in total. -Now add this `6` to existing value `0` of the variable `eggs` and assigne it back to `eggs`. +Now add this `6` to existing value `0` of the variable `eggs` and assign it back to `eggs`. `eggs` will be `6` now. The equivalent expression would be `people = people + 2` and `eggs = eggs + (3 * people)` From 653b2bf8be855647b579ef19d475feb7b195048d Mon Sep 17 00:00:00 2001 From: "Elton (Eddie) Hartman" Date: Mon, 31 Jul 2023 00:06:18 -0400 Subject: [PATCH 3/4] Fix typo in introduction.md in freelance-rates exercise. --- exercises/concept/freelancer-rates/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/freelancer-rates/.docs/introduction.md b/exercises/concept/freelancer-rates/.docs/introduction.md index 6b6bb951..3452c44c 100644 --- a/exercises/concept/freelancer-rates/.docs/introduction.md +++ b/exercises/concept/freelancer-rates/.docs/introduction.md @@ -72,7 +72,7 @@ people += 2; eggs += 3 * people; // eggs is now 6 ``` -Vairables `people` & `eggs` are initialized to `0`. +Variables `people` & `eggs` are initialized to `0`. Then, we add integer value `2` over the existing value `0` of the variable `people` and assign it back to `people`. `people` becomes `2` now. Later, we add `3` eggs for each person, which turns out to be `6` eggs in total. From 073878b6b334dd5987c87e62c808bdc0a54e6213 Mon Sep 17 00:00:00 2001 From: "Elton (Eddie) Hartman" Date: Tue, 1 Aug 2023 23:15:01 -0400 Subject: [PATCH 4/4] Fix typos in concepts numbers about.md --- concepts/numbers/about.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/concepts/numbers/about.md b/concepts/numbers/about.md index fad33405..35499fc4 100644 --- a/concepts/numbers/about.md +++ b/concepts/numbers/about.md @@ -72,11 +72,11 @@ people += 2; eggs += 3 * people; // eggs is now 6 ``` -Vairables `people` & `eggs` are initialized to `0`. -Then, we add integer value `2` over the existing value `0` of the variable `people` and assigne it back to `people`. +Variables `people` & `eggs` are initialized to `0`. +Then, we add integer value `2` over the existing value `0` of the variable `people` and assign it back to `people`. `people` becomes `2` now. Later, we add `3` eggs for each person, which turns out to be `6` eggs in total. -Now add this `6` to existing value `0` of the variable `eggs` and assigne it back to `eggs`. +Now add this `6` to existing value `0` of the variable `eggs` and assign it back to `eggs`. `eggs` will be `6` now. The equivalent expression would be `people = people + 2` and `eggs = eggs + (3 * people)`. @@ -106,4 +106,4 @@ Including `0`, this sets the biggest and smallest `int` numbers as `-2^31` and ` Floating point numbers are usually implemented using 15 decimal places of precision, but will vary in representation based on the host system. ~~~~ -[cpp_numerical_bases]: https://cplusplus.com/doc/hex/ \ No newline at end of file +[cpp_numerical_bases]: https://cplusplus.com/doc/hex/