diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/state-name-puzzle.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/state-name-puzzle.md index 841319d1bda..6ae83d11ec1 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/state-name-puzzle.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/state-name-puzzle.md @@ -15,7 +15,7 @@ dashedName: state-name-puzzle Write a function to solve the challenge for a given array of actual U.S. state names, and for fictional state names. -The function should return an array. Each element should be an object in this form: `{"from":[],"to":[]}`. The `"from"` array should contain the original names and the `"to"` array should contain the resultant names. +The function should return an array. Each element should be an object in this form: `{"from":[],"to":[]}`. The `from` array should contain the original names and the `to` array should contain the resultant names. # --hints-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/61537c9eecea6a335db6da79.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/61537c9eecea6a335db6da79.md index 929dff53a89..1cbd75c713f 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/61537c9eecea6a335db6da79.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/61537c9eecea6a335db6da79.md @@ -7,7 +7,7 @@ dashedName: step-5 # --description-- -Below your `.header` element, create a new `div` element and assign it a `class` of `"gallery"`. This `div` will act as a container for the gallery images. +Below your `.header` element, create a new `div` element and assign it a `class` of `gallery`. This `div` will act as a container for the gallery images. Inside that `.gallery` element, create nine `img` elements. diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2999ec27ec516655eba6.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2999ec27ec516655eba6.md index aa044de71f3..ee088d679f6 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2999ec27ec516655eba6.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2999ec27ec516655eba6.md @@ -17,7 +17,7 @@ You should use compound assignment to add the string `Right! You win 20 gold!` t assert.match(pick.toString(), /text\.innerText\s*\+=\s*('|")Right! You win 20 gold!\1/); ``` -You should use compound assignment add `20` to the value of `gold`. +You should use compound assignment to add `20` to the value of `gold`. ```js assert.match(pick.toString(), /gold\s*\+=\s*20/);