Skip to content

Commit 69f6cab

Browse files
macrotimtimdorr
authored andcommitted
Fixed misspellings. (reactjs#176)
1 parent f54cf18 commit 69f6cab

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lessons/03-navigating-with-link/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Perhaps the most used component in your app is `Link`. Its almost
44
identical to the `<a/>` tag you're used to except that its aware of
55
the `Router` it was rendered in.
66

7-
Lets create some navigation in our `App` component.
7+
Let's create some navigation in our `App` component.
88

99
```js
1010
// modules/App.js

lessons/05-active-links/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ You can also use an active class name instead of inline-styles.
2525
<li><Link to="/repos" activeClassName="active">Repos</Link></li>
2626
```
2727

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

3131
```html
3232
<link rel="stylesheet" href="index.css" />

lessons/11-productionish-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ app.get('*', function (req, res) {
8888
})
8989
```
9090

91-
We also need to tell wepback to build to this new directory:
91+
We also need to tell webpack to build to this new directory:
9292

9393
```js
9494
// webpack.config.js

lessons/12-navigating/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Navigating Programatically
22

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

7-
Let's make a little form in `Repos` that programatically navigates.
7+
Let's make a little form in `Repos` that programmatically navigates.
88

99
```js
1010
// modules/Repos.js

0 commit comments

Comments
 (0)