From 402ecabdc94e5aeb657c593d8af200625a09cdfe Mon Sep 17 00:00:00 2001 From: Dominik Rowicki Date: Thu, 2 Apr 2020 16:56:45 +0200 Subject: [PATCH] Update links to history docs (#7228) --- packages/react-router/docs/api/history.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-router/docs/api/history.md b/packages/react-router/docs/api/history.md index 33e625d7af..7220ef31b0 100644 --- a/packages/react-router/docs/api/history.md +++ b/packages/react-router/docs/api/history.md @@ -22,7 +22,7 @@ The following terms are also used: - `go(n)` - (function) Moves the pointer in the history stack by `n` entries - `goBack()` - (function) Equivalent to `go(-1)` - `goForward()` - (function) Equivalent to `go(1)` -- `block(prompt)` - (function) Prevents navigation (see [the history docs](https://github.com/ReactTraining/history#blocking-transitions)) +- `block(prompt)` - (function) Prevents navigation (see [the history docs](https://github.com/ReactTraining/history/blob/master/docs/Blocking.md)) ## history is mutable @@ -44,4 +44,4 @@ class Comp extends React.Component { ; ``` -Additional properties may also be present depending on the implementation you're using. Please refer to [the history documentation](https://github.com/ReactTraining/history#properties) for more details. +Additional properties may also be present depending on the implementation you're using. Please refer to [the history documentation](https://github.com/ReactTraining/history/tree/master/docs) for more details.