@@ -24,7 +24,7 @@ render((
2424), document .getElementById (' app' ))
2525```
2626
27- Now go click around and admire your clean urls .
27+ Now go click around and admire your clean URLs .
2828
2929Oh yeah, the catch. Click on a link and then refresh your browser. What
3030happens?
@@ -35,8 +35,8 @@ Cannot GET /repos
3535
3636## Configuring Your Server
3737
38- Your server needs to deliver your app no matter what url comes in,
39- because your app, in the browser, is manipulating the url . Our current
38+ Your server needs to deliver your app no matter what URL comes in,
39+ because your app, in the browser, is manipulating the URL . Our current
4040server doesn't know how to handle the URL.
4141
4242The Webpack Dev Server has an option to enable this. Open up
@@ -47,7 +47,7 @@ The Webpack Dev Server has an option to enable this. Open up
4747```
4848
4949We also need to change our relative paths to absolute paths in
50- ` index.html ` since the urls will be at deep paths and the app, if it
50+ ` index.html ` since the URLs will be at deep paths and the app, if it
5151starts at a deep path, won't be able to find the files.
5252
5353``` html
@@ -60,7 +60,7 @@ starts at a deep path, won't be able to find the files.
6060```
6161
6262Stop your server if it's running, then ` npm start ` again. Look at those
63- clean urls :)
63+ clean URLs :)
6464
6565---
6666
0 commit comments