diff --git a/docs/using-react-redux/connect-extracting-data-with-mapStateToProps.md b/docs/using-react-redux/connect-extracting-data-with-mapStateToProps.md index 6f3ff30cb..ea3fd4deb 100644 --- a/docs/using-react-redux/connect-extracting-data-with-mapStateToProps.md +++ b/docs/using-react-redux/connect-extracting-data-with-mapStateToProps.md @@ -69,7 +69,7 @@ function mapStateToProps(state, ownProps) { } // Later, in your application, a parent component renders: -; + // and your component receives props.id, props.todo, and props.visibilityFilter ```