Skip to content

Commit 06eef10

Browse files
mmmaaatttttttimdorr
authored andcommitted
fix typo, make App.js h1 name consistent (reactjs#191)
1 parent f4516e3 commit 06eef10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lessons/04-nested-routes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ automatically becomes nested UI.
4646

4747
## Sharing Our Navigation
4848

49-
Lets nest our `About` and `Repos` components inside of `App` so that we
49+
Let's nest our `About` and `Repos` components inside of `App` so that we
5050
can share the navigation with all screens in the app. We do it in two
5151
steps:
5252

@@ -75,7 +75,7 @@ Next, render children inside of `App`.
7575
render() {
7676
return (
7777
<div>
78-
<h1>Ghettohub Issues</h1>
78+
<h1>React Router Tutorial</h1>
7979
<ul role="nav">
8080
<li><Link to="/about">About</Link></li>
8181
<li><Link to="/repos">Repos</Link></li>

0 commit comments

Comments
 (0)