fix(curriculum): typos in challenge description (#47759)

* fix: typos in challenge description

* fix: remove quotation from code block

* Update curriculum/challenges/english/10-coding-interview-prep/rosetta-code/state-name-puzzle.md

Co-authored-by: Ilenia <nethleen@gmail.com>

* Update curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2999ec27ec516655eba6.md

Co-authored-by: Ilenia <nethleen@gmail.com>

Co-authored-by: Ilenia <nethleen@gmail.com>
This commit is contained in:
Atir Nayab 2022-10-20 18:10:21 +05:30 committed by GitHub
parent 818568376d
commit 242b334517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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--

View File

@ -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.

View File

@ -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/);