Skip to content

Commit cb43c7d

Browse files
authored
Merge pull request #3639 from reactjs/fix-history-link
Fix links to history repo
2 parents e38527f + ab5a988 commit cb43c7d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/API.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ A `<Link>` can know when the route it links to is active and automatically apply
105105

106106
#### Props
107107
##### `to`
108-
A [location descriptor](https://github.com/ReactJSTraining/history/blob/master/docs/Glossary.md#locationdescriptor). Usually this is a string or an object, with the following semantics:
108+
A [location descriptor](https://github.com/ReactTraining/history/blob/master/docs/Glossary.md#locationdescriptor). Usually this is a string or an object, with the following semantics:
109109

110110
* If it's a string it represents the absolute path to link to, e.g. `/users/123` (relative paths are not supported).
111111
* If it's an object it can have four keys:
@@ -607,9 +607,9 @@ For more details, please see the [histories guide](/docs/guides/Histories.md).
607607
`useRouterHistory` is a `history` enhancer that configures a given `createHistory` factory to work with React Router. This allows using custom histories in addition to the bundled singleton histories.
608608

609609
It also pre-enhances the history with the
610-
[useQueries](https://github.com/ReactJSTraining/history/blob/master/docs/QuerySupport.md)
610+
[useQueries](https://github.com/ReactTraining/history/blob/master/docs/QuerySupport.md)
611611
and
612-
[useBasename](https://github.com/ReactJSTraining/history/blob/master/docs/BasenameSupport.md)
612+
[useBasename](https://github.com/ReactTraining/history/blob/master/docs/BasenameSupport.md)
613613
enhancers from `history`
614614

615615
#### Example

docs/guides/Histories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ render(
139139

140140
If you'd like to further customize the history options or use other
141141
enhancers from
142-
[history](https://github.com/ReactJSTraining/history/) you can use
142+
[history](https://github.com/ReactTraining/history/) you can use
143143
`useRouterHistory`.
144144

145145
Be aware that `useRouterHistory` already pre-enhances your history
146-
factory with the [useQueries](https://github.com/ReactJSTraining/history/blob/master/docs/QuerySupport.md) and [useBasename](https://github.com/ReactJSTraining/history/blob/master/docs/BasenameSupport.md) enhancers from `history`.
146+
factory with the [useQueries](https://github.com/ReactTraining/history/blob/master/docs/QuerySupport.md) and [useBasename](https://github.com/ReactTraining/history/blob/master/docs/BasenameSupport.md) enhancers from `history`.
147147

148148
### Examples:
149149

0 commit comments

Comments
 (0)