From e5b4ae17a0cbb48693a8b75738c54fe1d73799da Mon Sep 17 00:00:00 2001 From: Emer Conghaile Date: Thu, 25 Mar 2021 17:18:51 -0500 Subject: [PATCH] fix: Simplify wording to make more sense (#41586) * fix: Simplify wording to make more sense I think that "count odd numbers backward by twos" instead of "count backward by twos by odd numbers" is easier to understand. * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md I think that this variation sounds better than what I originally wrote. Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> --- .../basic-javascript/count-backwards-with-a-for-loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md index 0d30063502..d6c348a821 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md @@ -22,7 +22,7 @@ for (var i = 10; i > 0; i -= 2) { } ``` -`ourArray` will now contain `[10,8,6,4,2]`. Let's change our initialization and final expression so we can count backward by twos by odd numbers. +`ourArray` will now contain `[10,8,6,4,2]`. Let's change our initialization and final expression so we can count backwards by twos to create an array of descending odd numbers. # --instructions--