Skip to content

Commit

Permalink
fix(docs): correct grammar in part-2-app-structure tutorial regarding… (
Browse files Browse the repository at this point in the history
  • Loading branch information
yakksiek authored Sep 19, 2024
1 parent d6e1bc3 commit 05ba9d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/essentials/part-2-app-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ If you're curious _why_ we use thunks for async logic, see this deeper explanati

We know that we're not allowed to put any kind of async logic in reducers. But, that logic has to live somewhere.

If we have access to the Redux store, we could write some async code and call `store.dispatch()` when we're done:
If we had access to the Redux store, we could write some async code and call `store.dispatch()` when we're done:

```js
const store = configureStore({ reducer: counterReducer })
Expand Down

0 comments on commit 05ba9d1

Please sign in to comment.