diff --git a/guide/english/redux/redux-selectors/index.md b/guide/english/redux/redux-selectors/index.md index 2988c01867..329a5f09cc 100644 --- a/guide/english/redux/redux-selectors/index.md +++ b/guide/english/redux/redux-selectors/index.md @@ -75,7 +75,7 @@ The items stored could be something like: ``` With this it would make the components more coupled to the Redux state and less generic and reusable. -Also it would impact the performance of the application, because the mapStateToProps function gets called alot during the lifecycle of the application and using it for this type of calculation is not a good practice. +Also it would impact the performance of the application, because the mapStateToProps function gets called a lot during the lifecycle of the application and using it for this type of calculation is not a good practice. ## Selector function in action