Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Sep 8, 2019
1 parent 8fce50d commit b1f211a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/api/configureStore.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ hide_title: true

# `configureStore`

A friendlier abstraction over the standard Redux `createStore` function.
A friendly abstraction over the standard Redux `createStore` function that adds good defaults
to the store setup for a better development experience.

## Parameters

Expand Down Expand Up @@ -54,7 +55,7 @@ interface ConfigureStoreOptions<S = any, A extends Action = AnyAction> {
* If you need to customize the order of enhancers, supply a callback
* function that will receive the original array (ie, `[applyMiddleware]`),
* and should return a new array (such as `[applyMiddleware, offline]`).
* If you only need to add middleware, you can use the `middleware` parameter instaead.
* If you only need to add middleware, use the `middleware` parameter instead.
*/
enhancers?: StoreEnhancer[] | ConfigureEnhancersCallback
}
Expand Down

0 comments on commit b1f211a

Please sign in to comment.