Skip to content

Commit 2b88b70

Browse files
committed
Update docs
1 parent 5ba72d4 commit 2b88b70

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

docs/api/Router.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ Router.Routes
2222

2323
// mixins
2424
Router.ActiveState
25-
Router.AsyncState
26-
Router.PathState
27-
Router.RouteLookup
28-
Router.Transitions
25+
Router.CurrentPath
26+
Router.Navigation
2927

3028
// methods
3129
Router.renderRoutesToString
30+
Router.renderRoutesToStaticMarkup
3231
```
3332

3433
Methods

docs/guides/overview.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,7 @@ var Message = React.createClass({
277277
```
278278

279279
Assuming the user navigates to `/inbox/123`, `this.props.params.messageId` is
280-
going to be `'123'`. Check out the [AsyncState][AsyncState] mixin to see
281-
how you can turn this parameter into state on your component. Or for a
282-
more basic approach, make an ajax call in `componentDidMount` with the
283-
value.
280+
going to be `'123'`.
284281

285282
Important Note About Dynamic Segments
286283
-------------------------------------

0 commit comments

Comments
 (0)