Skip to content

Commit f5eccb5

Browse files
nickschotpichfl
authored andcommitted
Add proper relative links to sections specified later
1 parent f12641b commit f5eccb5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

text/0000-route-manager-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ The `RouteInfo` classes refer to the existing public API `RouteInfo` as specifie
115115

116116
### NavigationActions interface
117117

118-
The `NavigationActions` interface defines any actions that some of the manager hooks are allowed to call. For now this is just the `cancel` action which stops the current navigation. The implementation details are left to the router, but will at least need to abort the `signal` defined in the `AsyncNavigationState` interface.
118+
The `NavigationActions` interface defines any actions that some of the manager hooks are allowed to call. For now this is just the `cancel` action which stops the current navigation. The implementation details are left to the router, but will at least need to abort the `signal` defined in the [`AsyncNavigationState` interface](#asyncnavigationstate-interface).
119119

120120
```ts
121121
interface NavigationActions {
@@ -132,7 +132,7 @@ The `signal` is an `AbortSignal` provided by the Router which can be used to rea
132132

133133
`ancestorPromises` allows you to tie in to the asynchronous lifecycle of ancestor Routes. This opens the possibility for a RouteManager implementation for parallel resolution of the asynchronous lifecycle. The Classic Route Manager will rely on this behaviour to implement the current waterfall lifecycle.
134134

135-
In addition, the Router will need to provide a method to the Route Managers to retrieve the `resolvedContext` (defined later in this document) of a Route based on its `RouteInfo`.
135+
In addition, the Router will need to provide a method to the Route Managers to retrieve the [`resolvedContext`](#resolvedcontext) of a Route based on its `RouteInfo`.
136136

137137
```ts
138138
// Exposes API used to interact with the active navigation, like awaiting ancestor's async behaviour.

0 commit comments

Comments
 (0)