From 8a54c9bb50b07b2558488f395d91109826d2c36b Mon Sep 17 00:00:00 2001 From: Evgeniy Skidan Date: Mon, 27 Feb 2017 21:12:33 +0300 Subject: [PATCH] Fix link to location descriptor (#542) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d66f0e..7d4eefa 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ Action creators that correspond with the [history methods of the same name] - `goForward` - Moves forward one location. Equivalent to `go(1)` - `goBack` - Moves backwards one location. Equivalent to `go(-1)` -Both `push` and `replace` take in a [location descriptor](https://github.com/mjackson/history/blob/v2.x/docs/Glossary.md#locationdescriptor), which can be an object describing the URL or a plain string URL. +Both `push` and `replace` take in a [location descriptor](https://github.com/ReactTraining/history/blob/v2/docs/Glossary.md#locationdescriptor), which can be an object describing the URL or a plain string URL. These action creators are also available in one single object as `routerActions`, which can be used as a convenience when using Redux's `bindActionCreators()`.