Skip to content

Commit 892843f

Browse files
authored
fix(curriculum): grammar and wording in multiple challenges (freeCodeCamp#60784)
1 parent 78fbc36 commit 892843f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-fetch-and-promises-by-building-an-fcc-authors-page/641da4b16937be43ba24c63d.md

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

1010
In order to start working with the data, you will need to use another `.then()` method.
1111

12-
Chain another `.then()` to the existing `.then()` method. This time, pass in `data` as the parameter for the callback function. For the callback, use a curly brace because you will have more than one expression. Within your callback function, log `data` to the console to see what it looks like.
12+
Chain another `.then()` to the existing `.then()` method. This time, pass in `data` as the parameter for the callback function. For the callback, use curly braces because you will have more than one expression. Within your callback function, log `data` to the console to see what it looks like.
1313

1414

1515
# --before-all--

curriculum/challenges/english/25-front-end-development/workshop-fcc-authors-page/641da4b16937be43ba24c63d.md

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

1010
In order to start working with the data, you will need to use another `.then()` method.
1111

12-
Chain another `.then()` to the existing `.then()` method. This time, pass in `data` as the parameter for the callback function. For the callback, use a curly brace because you will have more than one expression. Within your callback function, log `data` to the console to see what it looks like.
12+
Chain another `.then()` to the existing `.then()` method. This time, pass in `data` as the parameter for the callback function. For the callback, use curly braces because you will have more than one expression. Within your callback function, log `data` to the console to see what it looks like.
1313

1414
# --before-all--
1515

curriculum/challenges/english/25-front-end-development/workshop-reusable-profile-card-component/674ef11f75254548672d998c.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ demoType: onLoad
1010

1111
In this project, you will learn how to work with props by building a reusable profile card component.
1212

13-
Start by using the `export` keyword to create a `Card` functional component with `name`, `title`, and `bio` as the props. Don't forget to make sure they're all wrapped in a curly brace. That way, you destructure them instead of accessing them from `props`.
13+
Start by using the `export` keyword to create a `Card` functional component with `name`, `title`, and `bio` as the props. Don't forget to make sure they're all wrapped in curly braces. That way, you destructure them instead of accessing them from `props`.
1414

15-
Also, return a pair of parentheses with an empty string inside of them for now.
15+
Also, return a pair of parentheses with an empty string inside for now.
1616

1717
# --hints--
1818

0 commit comments

Comments
 (0)