Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit f97d0b7

Browse files
livashtimdorr
authored andcommitted
typo fixes (#187)
1 parent 40031e4 commit f97d0b7

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

lessons/02-rendering-a-route/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export default React.createClass({
6666
Now we can couple them to the app at their respective paths.
6767

6868
```js
69+
// insert into index.js
6970
import About from './modules/About'
7071
import Repos from './modules/Repos'
7172

lessons/05-active-links/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Now as you navigate, the active link is red.
2121
You can also use an active class name instead of inline-styles.
2222

2323
```js
24+
// modules/App.js
2425
<li><Link to="/about" activeClassName="active">About</Link></li>
2526
<li><Link to="/repos" activeClassName="active">Repos</Link></li>
2627
```
@@ -29,6 +30,7 @@ We don't have a stylesheet on the page yet though. Lets add one-extra
2930
point if you can add a `link` tag from memory.
3031

3132
```html
33+
// index.html
3234
<link rel="stylesheet" href="index.css" />
3335
```
3436

@@ -71,7 +73,7 @@ export default React.createClass({
7173
Now you can go change your links to `NavLink`s.
7274

7375
```js
74-
// App.js
76+
// modules/App.js
7577
import NavLink from './NavLink'
7678

7779
// ...

lessons/08-index-routes/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ One option is to see if we have any children in `App`, and if not,
1919
render `Home`:
2020

2121
```js
22-
// App.js
22+
// modules/App.js
2323
import Home from './Home'
2424

2525
// ...

lessons/10-clean-urls/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ starts at a deep path, won't be able to find the files.
5353
```html
5454
<!-- index.html -->
5555
<!-- index.css -> /index.css -->
56-
<link rel=stylesheet href=/index.css>
56+
<link rel="stylesheet" href="/index.css">
5757

5858
<!-- bundle.js -> /bundle.js -->
5959
<script src="/bundle.js"></script>

lessons/12-navigating/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ First we can use the `browserHistory` singleton that we passed into
5252
`Router` in `index.js` and push a new url into the history.
5353

5454
```js
55-
// Repos.js
55+
// modules/Repos.js
5656
import { browserHistory } from 'react-router'
5757

5858
// ...

0 commit comments

Comments
 (0)