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

Commit 8aa12c0

Browse files
Sudheer Satyanarayanatimdorr
Sudheer Satyanarayana
authored andcommitted
Capitalize URL (#199)
1 parent d54d32e commit 8aa12c0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lessons/10-clean-urls/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -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

2929
Oh yeah, the catch. Click on a link and then refresh your browser. What
3030
happens?
@@ -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
4040
server doesn't know how to handle the URL.
4141

4242
The 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

4949
We 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
5151
starts 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

6262
Stop 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

Comments
 (0)