Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lessons/02-rendering-a-route/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ At its heart, React Router is a component.
render(<Router/>, document.getElementById('app'))
```

That's not going display anything until we configure a route.
That's not going to display anything until we configure a route.

Open up `index.js` and

Expand Down
2 changes: 1 addition & 1 deletion lessons/03-navigating-with-link/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Perhaps the most used component in your app is `Link`. Its almost
identical to the `<a/>` tag you're used to except that its aware of
the `Router` it was rendered in.

Lets create some navigation in our `App` component.
Let's create some navigation in our `App` component.

```js
// modules/App.js
Expand Down
4 changes: 2 additions & 2 deletions lessons/05-active-links/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ You can also use an active class name instead of inline-styles.
<li><Link to="/repos" activeClassName="active">Repos</Link></li>
```

We don't have a stylesheet on the page yet though. Lets add one--extra
points if you can add a `link` tag from memory.
We don't have a stylesheet on the page yet though. Lets add one-extra
point if you can add a `link` tag from memory.

```html
<link rel="stylesheet" href="index.css" />
Expand Down
2 changes: 1 addition & 1 deletion lessons/11-productionish-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ app.get('*', function (req, res) {
})
```

We also need to tell wepback to build to this new directory:
We also need to tell webpack to build to this new directory:

```js
// webpack.config.js
Expand Down
4 changes: 2 additions & 2 deletions lessons/12-navigating/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Navigating Programatically

While most navigation happens with `Link`, you can programatically
While most navigation happens with `Link`, you can programmatically
navigate around an application in response to form submissions, button
clicks, etc.

Let's make a little form in `Repos` that programatically navigates.
Let's make a little form in `Repos` that programmatically navigates.

```js
// modules/Repos.js
Expand Down