Skip to content

Commit b60d6c0

Browse files
committed
Fix up some remaining bad links.
1 parent 095ed6c commit b60d6c0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ render((
121121
), document.body)
122122
```
123123

124-
See more in the [Introduction](https://github.com/reactjs/react-router/tree/latest/docs/Introduction.md), [Advanced Usage](https://github.com/reactjs/react-router/tree/latest/docs/guides/README.md), and [Examples](https://github.com/reactjs/react-router/tree/latest/examples).
124+
See more in the [Introduction](https://github.com/reactjs/react-router/tree/latest/docs/Introduction.md), [Guides](https://github.com/reactjs/react-router/tree/latest/docs/guides/README.md), and [Examples](https://github.com/reactjs/react-router/tree/latest/examples).
125125

126126
### Versioning and Stability
127127

docs/API.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ The path used in the URL.
210210
It will concat with the parent route's path unless it starts with `/`,
211211
making it an absolute path.
212212

213-
**Note**: Absolute paths may not be used in route config that is [dynamically loaded](/docs/guides/advanced/DynamicRouting.md).
213+
**Note**: Absolute paths may not be used in route config that is [dynamically loaded](/docs/guides/DynamicRouting.md).
214214

215215
If left undefined, the router will try to match the child routes.
216216

docs/guides/RouteConfiguration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ URL | Components
134134
`/inbox` | `App -> Inbox`
135135
`/messages/:id` | `App -> Inbox -> Message`
136136

137-
**Note**: Absolute paths may not be used in route config that is [dynamically loaded](/docs/guides/advanced/DynamicRouting.md).
137+
**Note**: Absolute paths may not be used in route config that is [dynamically loaded](/docs/guides/DynamicRouting.md).
138138

139139
### Preserving URLs
140140

@@ -165,7 +165,7 @@ Now when someone clicks on that link to `/inbox/messages/5` they'll automaticall
165165

166166
### Enter and Leave Hooks
167167

168-
[Route](/docs/Glossary.md#route)s may also define [`onEnter`](/docs/Glossary.md#enterhook) and [`onLeave`](/docs/Glossary.md#leavehook) hooks that are invoked once a transition has been [confirmed](/docs/guides/advanced/ConfirmingNavigation.md). These hooks are useful for various things like [requiring auth](https://github.com/reactjs/react-router/tree/master/examples/auth-flow) when a route is entered and saving stuff to persistent storage before a route unmounts.
168+
[Route](/docs/Glossary.md#route)s may also define [`onEnter`](/docs/Glossary.md#enterhook) and [`onLeave`](/docs/Glossary.md#leavehook) hooks that are invoked once a transition has been [confirmed](/docs/guides/ConfirmingNavigation.md). These hooks are useful for various things like [requiring auth](https://github.com/reactjs/react-router/tree/master/examples/auth-flow) when a route is entered and saving stuff to persistent storage before a route unmounts.
169169

170170
During a transition, [`onLeave` hooks](/docs/Glossary.md#leavehook) run first on all routes we are leaving, starting with the leaf route on up to the first common ancestor route. Next, [`onEnter` hooks](/docs/Glossary.md#enterhook) run starting with the first parent route we're entering down to the leaf route.
171171

upgrade-guides/v1.0.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ var Home = React.createClass({
364364
```
365365

366366
To cancel a "transition from", please refer to the
367-
[Confirming Navigation](/docs/guides/advanced/ConfirmingNavigation.md) guide.
367+
[Confirming Navigation](/docs/guides/ConfirmingNavigation.md) guide.
368368

369369
### We'll keep updating this
370370

0 commit comments

Comments
 (0)