Skip to content

Commit cff554d

Browse files
pursuitofloottimdorr
authored andcommitted
Update connect-dispatching-actions-with-mapDispatchToProps.md (#1501)
The link to bindActionCreators documentation was not working
1 parent 9a10b15 commit cff554d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/using-react-redux/connect-dispatching-actions-with-mapDispatchToProps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ function Counter({ count, increment, decrement, reset }) {
218218

219219
Wrapping these functions by hand is tedious, so Redux provides a function to simplify that.
220220

221-
> `bindActionCreators` turns an object whose values are [action creators](https://redux.js.org/glossary#action-creator), into an object with the same keys, but with every action creator wrapped into a [`dispatch`](https://redux.js.org/api/store#dispatch) call so they may be invoked directly. See [Redux Docs on `bindActionCreators`](http://redux.js.org/docs/api/bindActionCreators.html)
221+
> `bindActionCreators` turns an object whose values are [action creators](https://redux.js.org/glossary#action-creator), into an object with the same keys, but with every action creator wrapped into a [`dispatch`](https://redux.js.org/api/store#dispatch) call so they may be invoked directly. See [Redux Docs on `bindActionCreators`](https://redux.js.org/api/bindactioncreators/)
222222
223223
`bindActionCreators` accepts two parameters:
224224

0 commit comments

Comments
 (0)