diff --git a/doc/00 Guides/0 Overview.md b/doc/00 Guides/0 Overview.md index 39f2a33e40..186f7e3ddf 100644 --- a/doc/00 Guides/0 Overview.md +++ b/doc/00 Guides/0 Overview.md @@ -141,7 +141,7 @@ var App = React.createClass({ // Finally we render a `Router` component with some `Route`s, it'll do all // the fancy routing stuff for us. React.render(( - + @@ -162,7 +162,7 @@ var routes = { ] }; -React.render(, document.body); +React.render(, document.body); ``` Adding more UI @@ -191,7 +191,7 @@ var Inbox = React.createClass({ }); React.render(( - + diff --git a/doc/03 History/0 Histories.md b/doc/03 History/0 Histories.md index d1516d771b..45e28988ec 100644 --- a/doc/03 History/0 Histories.md +++ b/doc/03 History/0 Histories.md @@ -4,7 +4,7 @@ an instance of one with your own options for query parsing. ```js import { history } from 'react-router/lib/BrowserHistory'; - + ``` If you need to do your own query parsing: diff --git a/doc/03 History/BrowserHistory.md b/doc/03 History/BrowserHistory.md index f2b068296a..917f0f2645 100644 --- a/doc/03 History/BrowserHistory.md +++ b/doc/03 History/BrowserHistory.md @@ -46,7 +46,7 @@ import { Router } from 'react-router'; import { history } from 'react-router/lib/BrowserHistory'; React.render(( - + {/* ... */} ), document.body); diff --git a/doc/03 History/HashHistory.md b/doc/03 History/HashHistory.md index a33803e5f4..f96327e677 100644 --- a/doc/03 History/HashHistory.md +++ b/doc/03 History/HashHistory.md @@ -36,7 +36,7 @@ import { Router } from 'react-router'; import { history } from 'react-router/lib/HashHistory'; React.render(( - + {/* ... */} ), document.body);