Skip to content

Commit 80a5fa4

Browse files
committed
Update README.md
1 parent ae5b164 commit 80a5fa4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ $ngReduxProvider.createStoreWith(reducer, ['promiseMiddleware', loggingMiddlewar
4646
$ngReduxProvider.createStoreWith(reducer, [middlewares], storeEnhancer);
4747
```
4848
#### Parameters:
49-
*reducer (Function): A single reducer composed of all other reducers (create with redux.combineReducer)
50-
*[middleware] (Array of Function or String): An array containing all the middleware that should be applied. Functions and strings are both valid members. String will be resolved via Angular, allowing you to use dependency injection in your middlewares.
51-
*storeEnhancer: Optional function that will be used to create the store, in most cases you don't need that, see [Store Enhancer official doc](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer)
49+
* reducer (Function): A single reducer composed of all other reducers (create with redux.combineReducer)
50+
* [middleware] (Array of Function or String): An array containing all the middleware that should be applied. Functions and strings are both valid members. String will be resolved via Angular, allowing you to use dependency injection in your middlewares.
51+
* storeEnhancer: Optional function that will be used to create the store, in most cases you don't need that, see [Store Enhancer official doc](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer)
5252

5353
```JS
5454
import reducers from './reducers';

0 commit comments

Comments
 (0)