diff --git a/docs/introduction/Ecosystem.md b/docs/introduction/Ecosystem.md index b136117f36..78e683cf80 100644 --- a/docs/introduction/Ecosystem.md +++ b/docs/introduction/Ecosystem.md @@ -219,7 +219,7 @@ store.dispatch( subscribe("users.byId.abcd", "subscription1", () => {} ); Store enhancer that can debounce subscription notifications ```js const debounceNotify = _.debounce(notify => notify()); -const store = createStore(reducer, intialState, batchedSubscribe(debounceNotify)); +const store = createStore(reducer, initialState, batchedSubscribe(debounceNotify)); ``` **[manaflair/redux-batch](https://github.com/manaflair/redux-batch)**