Skip to content

Commit

Permalink
Fix a very small typo in mapStateToProps docs (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
dagstuan authored and timdorr committed Oct 8, 2018
1 parent 1db16a4 commit cde9c04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/connect-extracting-data-with-mapStateToProps.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function mapStateToProps(state, ownProps) {
};

// Later, in your application, a parent component renders:
<ConnectedTodo id=123} />
<ConnectedTodo id={123} />
// and your component receives props.id, props.todo, and props.visibilityFilter
```
Expand Down Expand Up @@ -251,4 +251,4 @@ function mapStateToProps(...args) {
- [Why Is My Component Re-Rendering Too Often?](https://redux.js.org/faq/reactredux#why-is-my-component-re-rendering-too-often)
- [Why isn't my component re-rendering, or my mapStateToProps running](https://redux.js.org/faq/reactredux#why-isnt-my-component-re-rendering-or-my-mapstatetoprops-running)
- [How can I speed up my mapStateToProps?](https://redux.js.org/faq/reactredux#why-is-my-component-re-rendering-too-often)
- [Should I only connect my top component, or can I connect multiple components in my tree?](https://redux.js.org/faq/reactredux#why-is-my-component-re-rendering-too-often)
- [Should I only connect my top component, or can I connect multiple components in my tree?](https://redux.js.org/faq/reactredux#why-is-my-component-re-rendering-too-often)

0 comments on commit cde9c04

Please sign in to comment.