diff --git a/docs/api/Store.md b/docs/api/Store.md index e713903708..982db58587 100644 --- a/docs/api/Store.md +++ b/docs/api/Store.md @@ -19,14 +19,14 @@ To create it, pass your root [reducing function](../Glossary.md#reducer) to [`cr ### Store Methods -- [`getState()`](#getState) -- [`dispatch(action)`](#dispatch) -- [`subscribe(listener)`](#subscribe) -- [`replaceReducer(nextReducer)`](#replaceReducer) +- [`getState()`](#getstate) +- [`dispatch(action)`](#dispatchaction) +- [`subscribe(listener)`](#subscribelistener) +- [`replaceReducer(nextReducer)`](#replacereducernextreducer) ## Store Methods -### [`getState()`](#getState) +### getState() Returns the current state tree of your application. It is equal to the last value returned by the store's reducer. @@ -37,7 +37,7 @@ _(any)_: The current state tree of your application.