Skip to content

Commit b3a1456

Browse files
Axeljosepot
Axel
authored andcommitted
Fix links to Redux documentation (reduxjs#882)
1 parent f040f18 commit b3a1456

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you *really* need to, you can manually pass `store` as a prop to every `conne
99

1010
#### Props
1111

12-
* `store` (*[Redux Store](http://redux.js.org/docs/api/Store.html)*): The single Redux store in your application.
12+
* `store` (*[Redux Store](https://redux.js.org/api-reference/store)*): The single Redux store in your application.
1313
* `children` (*ReactElement*) The root of your component hierarchy.
1414

1515
#### Example
@@ -62,7 +62,7 @@ It does not modify the component class passed to it; instead, it *returns* a new
6262
6363
* [`mapDispatchToProps(dispatch, [ownProps]): dispatchProps`] \(*Object* or *Function*): If an object is passed, each function inside it is assumed to be a Redux action creator. An object with the same function names, but with every action creator wrapped into a `dispatch` call so they may be invoked directly, will be merged into the component’s props.
6464

65-
If a function is passed, it will be given `dispatch` as the first parameter. It’s up to you to return an object that somehow uses `dispatch` to bind action creators in your own way. (Tip: you may use the [`bindActionCreators()`](http://reactjs.github.io/redux/docs/api/bindActionCreators.html) helper from Redux.)
65+
If a function is passed, it will be given `dispatch` as the first parameter. It’s up to you to return an object that somehow uses `dispatch` to bind action creators in your own way. (Tip: you may use the [`bindActionCreators()`](https://redux.js.org/api-reference/bindactioncreators) helper from Redux.)
6666

6767
If your `mapDispatchToProps` function is declared as taking two parameters, it will be called with `dispatch` as the first parameter and the props passed to the connected component as the second parameter, and will be re-invoked whenever the connected component receives new props. (The second parameter is normally referred to as `ownProps` by convention.)
6868

0 commit comments

Comments
 (0)