Skip to content

Commit aa67956

Browse files
authored
Rephrase. (#3973)
1 parent b1f0e4c commit aa67956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/UsageWithTypescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export default connector(MyComponent)
324324

325325
## Usage with Redux Thunk
326326

327-
Redux Thunk is a commonly used middleware for writing sync and async logic that interacts with the Redux store. Feel free to check out its documentation [here](https://github.com/reduxjs/redux-thunk). A thunk is a function that returns another function that takes parameters `dispatch` and `getState`. Redux Thunk has a built in type `ThunkAction` which we can use to define types for those arguments:
327+
Redux Thunk is a commonly used middleware for writing sync and async logic that interacts with the Redux store. Feel free to check out its documentation [here](https://github.com/reduxjs/redux-thunk). A thunk is a function that wraps an expression for delaying the evaluation of that expression. In Redux, a thunk takes parameters `dispatch` and `getState`. Redux Thunk has a built in type `ThunkAction` which we can use to define types for those arguments:
328328

329329
```ts
330330
// src/thunks.ts

0 commit comments

Comments
 (0)