From 1b8c75361d92a9368ea6042aeab0b9e05dff3b5c Mon Sep 17 00:00:00 2001 From: Tsung Chen Ku Date: Mon, 5 Sep 2016 11:04:30 +0800 Subject: [PATCH] Invalid url Migrate to http://redux.js.org/docs/Glossary.html#store-enhancer --- docs/Walkthrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Walkthrough.md b/docs/Walkthrough.md index 7e4c877b..760a2cf3 100644 --- a/docs/Walkthrough.md +++ b/docs/Walkthrough.md @@ -67,7 +67,7 @@ const DevTools = createDevTools( #### Use `DevTools.instrument()` Store Enhancer -The `DevTools` component you created with `createDevTools()` has a special static method called `instrument()`. It returns a [store enhancer](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer) that you need to use in development. +The `DevTools` component you created with `createDevTools()` has a special static method called `instrument()`. It returns a [store enhancer](http://redux.js.org/docs/Glossary.html#store-enhancer) that you need to use in development. A store enhancer is a function that enhances the behavior of `createStore()`. You can pass store enhancer as the last optional argument to `createStore()`. You probably already used another store enhancer—[`applyMiddleware()`](http://redux.js.org/docs/api/applyMiddleware.html). Unlike `applyMiddleware()`, you will need to be careful to only use `DevTools.instrument()` in development environment, and never in production.