Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 456307a

Browse files
authored
Merge pull request #59 from coding-with-cynthia/quick-fixes
Fixing some typos
2 parents f12ba06 + 64aa097 commit 456307a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

responses/04_replace-title-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
What does the `List` component do with the information we just included? Adding `this.props` tells the component to look for the property that was passed to it.
44

5-
To see, open the `src/List.jsx` file. In the `render` method, in our input tag, notice that we set our `placeholder` to `this.props.placeholder`. Then, at the bottom of our `render` method, we loop through out `this.props.currList`. This shows each item in the list that we pass.
5+
To see, open the `src/List.jsx` file. In the `render` method, in our input tag, notice that we set our `placeholder` to `this.props.placeholder`. Then, at the bottom of our `render` method, we loop through our `this.props.currList`. This shows each item in the list that we pass.
66

77
Let's go ahead and replace the current title with another `prop`.
88

responses/06_create-addstudent-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Now that we see how it works with assignments, let's try it with students! We wi
1414
5. Stage, commit, and push your changes to the `changes` branch:
1515
```
1616
git add src/App.jsx
17-
git commit -m "create addStudents method"
17+
git commit -m "create addStudent method"
1818
git push
1919
```
2020

responses/06_explaining-this-state-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Unfortunately, we can't just do `this.state.studentsList = .....` to change data
66

77
To set the state of a state variable we have to use the method, `this.setState`.
88

9-
Take at the method on line 30 in `src/App.jsx`
9+
Take a look at the method on line 30 in `src/App.jsx`
1010

1111
When this method is called, it is adding `assignmentName` to our state variable `assignments` by setting the state of `assignments` to itself with the concatenation of `assignmentName`.
1212

0 commit comments

Comments
 (0)