Skip to content

Commit

Permalink
Merge pull request #85 from jkbits1/minor-text-changes
Browse files Browse the repository at this point in the history
minor text improvements
  • Loading branch information
kohei-takata committed Dec 25, 2015
2 parents 45f3908 + a5a0772 commit 8113cae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions exercises/hello_react/problem.en.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
First things first, let's print `Hello World`!

Make directory you write codes in that and enter it. It needs to contain a [package.json](https://docs.npmjs.com/getting-started/using-a-package.json) file
for npm to know in which folder to install the subsequent packages.
First, create the directory where you will write your code. It needs to contain a [package.json](https://docs.npmjs.com/getting-started/using-a-package.json) file
for npm to know in which folder to install the subsequent packages - `npm init` does this for us.
You can change `learnyoureact` to any name you like.

`$ mkdir learnyoureact; cd learnyoureact; npm init -y;
Expand Down
6 changes: 3 additions & 3 deletions exercises/isomorphic/problem.en.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Let's use React on the front-end too!

From this excercise on, we'll use React not only on the server side but also on the front-end.
From this exercise on, we'll use React not only on the server side but also on the front-end.
Let's raise the event on the front-end, and see what will happen.
In the past exercises, there was a code which raised the front-end event, but it does not work. Where is that?
In the past exercises, there was some code that raised a front-end event, but it did not work. Where is that?

The code is the check of the `checkbox` event you wrote in `State`.
At `State`, to tell the truth, you can check the `checkbox` no matter what code you write.
In this excercise, let's confirm if you can write the right code or not.
In this exercise, let's confirm if you can write the right code or not.
There is a lot of code to change !
Let's try it!

Expand Down
2 changes: 1 addition & 1 deletion exercises/proptypes/problem.en.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Let's learn to validate that our components get passed all needed properties.
Let's learn to validate that our components get passed all the necessary properties.

As you build and rely on common components (buttons, form fields etc.), it's
helpful to ensure the components are being used correctly.
Expand Down

0 comments on commit 8113cae

Please sign in to comment.