Skip to content

Commit ac0e7d0

Browse files
committed
Fix Redux API links
1 parent 5202514 commit ac0e7d0

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
@@ -16,7 +16,7 @@ If you *really* need to, you can manually pass `store` as a prop to every `conne
1616

1717
### Props
1818

19-
* `store` (*[Redux Store](https://redux.js.org/api-reference/store)*): The single Redux store in your application.
19+
* `store` (*[Redux Store](https://redux.js.org/api/store)*): The single Redux store in your application.
2020
* `children` (*ReactElement*) The root of your component hierarchy.
2121

2222
### Example
@@ -71,7 +71,7 @@ It does not modify the component class passed to it; instead, it *returns* a new
7171
7272
* [`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.
7373

74-
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.)
74+
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/bindactioncreators) helper from Redux.)
7575

7676
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.)
7777

0 commit comments

Comments
 (0)