File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ In CommonJS format you should use:
4646const Store = require (' repatch' ).default ;
4747```
4848
49- Repatch's interface is the same as Redux, therefore you can use with [ react-redux] ( https://www.npmjs.com/package/react-redux ) .
49+ Repatch's interface is very similar to Redux, therefore you can use with [ react-redux] ( https://www.npmjs.com/package/react-redux ) .
5050
5151``` javascript
5252const unsubscribe = store .subscribe (() => console .log (store .getState ()));
@@ -84,7 +84,7 @@ A repatch middleware takes the store instance and the previous reducer and retur
8484(Store, Reducer): Reducer
8585```
8686
87- Use ` addMiddleware ` method to chaining middlewares:
87+ Use the ` addMiddleware ` method to chaining middlewares:
8888
8989``` javascript
9090const store = new Store (initialState)
@@ -120,7 +120,7 @@ It is possible to embed async actions within each other too and awaiting their r
120120await dispatch (fetchUsers ());
121121```
122122
123- You can access ` thunk ` as static member of ` Store ` too : ` Store.thunk `
123+ You can access ` thunk ` even as static member of the ` Store ` : ` Store.thunk `
124124
125125### Injecting extra argument
126126
You can’t perform that action at this time.
0 commit comments