Skip to content

Commit b44b28b

Browse files
committed
Update README
1 parent d11e141 commit b44b28b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A complete routing library for React. https://rackt.github.io/react-router
88

9-
React Router keeps the URL in sync with nested UI. It has a simple API
9+
React Router keeps your UI in sync with the URL. It has a simple API
1010
with powerful features like lazy code loading, dynamic route matching,
1111
and location transition handling built right in. Make the URL your first
1212
thought, not an after-thought.
@@ -22,7 +22,7 @@ Docs & Help
2222
Browser Support
2323
---------------
2424

25-
We intend to support all the browers React supports.
25+
We support all browsers and environments where React runs.
2626

2727
Installation
2828
------------
@@ -43,18 +43,19 @@ import { Router, Route, Link } from 'react-router';
4343
var ReactRouter = require('react-router');
4444
var Router = ReactRouter.Router;
4545
var Route = ReactRouter.Route;
46+
var Link = ReactRouter.Link;
4647
```
4748

48-
There's also a `dist/` folder containing a UMD version.
49+
There's also a `lib/umd` folder containing a UMD version.
4950

5051
### bower + who knows what
5152

5253
```sh
5354
bower install react-router
5455
```
5556

56-
Find the UMD/global build in `dist/`, and the library on
57-
`window.ReactRouter`. Best of luck to you.
57+
Find the UMD/global build in `lib/umd`, and the library on
58+
`window.ReactRouter`. Best of luck to you. :)
5859

5960
### CDN
6061

0 commit comments

Comments
 (0)