Skip to content

Commit 45f2082

Browse files
committed
Merge pull request railsbridge#497 from jabbowaki/fix-typos-on-react-tutorial
fix minor spelling errors
2 parents 522d939 + 62cf2d8 commit 45f2082

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sites/en/javascript-to-do-list-with-react/adding_an_item.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ the server responds. This abstract process is repeated over and over again:
171171

172172
1. Listen for a user action on the page.
173173
2. Parse out the information the user is submitting.
174-
3. Prevent the default action from occuring, if necessary.
174+
3. Prevent the default action from occurring, if necessary.
175175
4. Make a request to the server using AJAX.
176176
5. When the request succeeds, parse the data the server sends back.
177177
6. Update the page with the newly received data.

sites/en/javascript-to-do-list-with-react/marking_an_item_as_complete.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ end
2222
steps do
2323
step do
2424
message "Let's add a click listener to our Item component's complete button. Find the line of code
25-
that creating ths completion button, and add an onClick attribute to make React listen for your users'
25+
that is creating the completion button, and add an onClick attribute to make React listen for your users'
2626
clicks. Your code should look like this:"
2727

2828
source_code :javascript, <<-JAVASCRIPT

0 commit comments

Comments
 (0)