From c96116aea06d18f109e34d623f7d086251b219b7 Mon Sep 17 00:00:00 2001 From: Saikat Guha Date: Mon, 13 Apr 2020 16:23:41 +0530 Subject: [PATCH] Update createStore.ts Replace broken link, "https://redux.js.org/api-reference/store#subscribelistener" link in the error message, by proper link "https://redux.js.org/api/store#subscribelistener" Also I checked the current repo for any other such broken link but didn't find any --- src/createStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/createStore.ts b/src/createStore.ts index 3ac977274e..1a8a6b7a0b 100644 --- a/src/createStore.ts +++ b/src/createStore.ts @@ -167,7 +167,7 @@ export default function createStore< 'You may not call store.subscribe() while the reducer is executing. ' + 'If you would like to be notified after the store has been updated, subscribe from a ' + 'component and invoke store.getState() in the callback to access the latest state. ' + - 'See https://redux.js.org/api-reference/store#subscribelistener for more details.' + 'See https://redux.js.org/api/store#subscribelistener for more details.' ) }