Skip to content

Commit 242b334

Browse files
fix(curriculum): typos in challenge description (freeCodeCamp#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 <[email protected]> * 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 <[email protected]> Co-authored-by: Ilenia <[email protected]>
1 parent 8185683 commit 242b334

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dashedName: state-name-puzzle
1515

1616
Write a function to solve the challenge for a given array of actual U.S. state names, and for fictional state names.
1717

18-
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.
18+
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.
1919

2020
# --hints--
2121

curriculum/challenges/english/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/61537c9eecea6a335db6da79.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-5
77

88
# --description--
99

10-
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.
10+
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.
1111

1212
Inside that `.gallery` element, create nine `img` elements.
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You should use compound assignment to add the string `Right! You win 20 gold!` t
1717
assert.match(pick.toString(), /text\.innerText\s*\+=\s*('|")Right! You win 20 gold!\1/);
1818
```
1919

20-
You should use compound assignment add `20` to the value of `gold`.
20+
You should use compound assignment to add `20` to the value of `gold`.
2121

2222
```js
2323
assert.match(pick.toString(), /gold\s*\+=\s*20/);

0 commit comments

Comments
 (0)