Skip to content

Commit 80296ec

Browse files
haricharanbole/
andauthored
Improved wording in README.md (#293)
Co-authored-by: / <hustle@haricharans-MacBook-Air.local>
1 parent 6cec396 commit 80296ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ npm install redux-thunk
1212

1313
## Note on 2.x Update
1414

15-
Most tutorials today assume Redux Thunk 1.x so you might run into an issue when
16-
running their code with 2.x.
17-
**If you use Redux Thunk 2.x in CommonJS environment,
15+
Most tutorials today assume that you're using Redux Thunk 1.x. You may run into
16+
issues when you run their code with 2.x. **If you use Redux Thunk 2.x in
17+
CommonJS environment,
1818
[don’t forget to add `.default` to your import](https://github.com/reduxjs/redux-thunk/releases/tag/v2.0.0):**
1919

2020
```diff
@@ -40,7 +40,7 @@ As you can see, it also requires `.default` at the end.
4040
## Why Do I Need This?
4141

4242
With a plain basic Redux store, you can only do simple synchronous updates by
43-
dispatching an action. Middleware extend the store's abilities, and let you
43+
dispatching an action. Middleware extends the store's abilities, and lets you
4444
write async logic that interacts with the store.
4545

4646
Thunks are the recommended middleware for basic Redux side effects logic,

0 commit comments

Comments
 (0)