Skip to content

Commit 1fa3751

Browse files
committed
Merge pull request #645 from justin808/doc-fix
Doc fixes
2 parents e778c6f + b659d6d commit 1fa3751

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/api/misc/Location.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Called when the router is transitioning from one path to another.
1717

1818
### `replace`
1919

20-
Called when ther router is replacing (not transitioning) one url with
20+
Called when the router is replacing (not transitioning) one url with
2121
another.
2222

2323
### `pop`

docs/api/mixins/State.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ var Tab = React.createClass({
7272
var isActive = this.isActive(this.props.to, this.props.params, this.props.query);
7373
var className = isActive ? 'active' : '';
7474
var link = Link(this.props);
75+
var link = (
76+
<Link {...this.props} />
77+
);
7578
return <li className={className}>{link}</li>;
7679
}
7780

docs/guides/path-matching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ values.
4545
Question Mark
4646
-------------
4747

48-
Question marks will optionally match the preceeding segment.
48+
Question marks will optionally match the preceding segment.
4949

5050
Examples
5151
--------

0 commit comments

Comments
 (0)