Skip to content

Commit ad98159

Browse files
author
Péter Hauszknecht
committed
update readme
1 parent dbed9c8 commit ad98159

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In CommonJS format you should use:
4646
const 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
5252
const 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
9090
const store = new Store(initialState)
@@ -120,7 +120,7 @@ It is possible to embed async actions within each other too and awaiting their r
120120
await 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

0 commit comments

Comments
 (0)