From 9c4409b79a8dc1738307fba7e47101d792e78278 Mon Sep 17 00:00:00 2001 From: faisal sayed <36627266+faisalsayed10@users.noreply.github.com> Date: Mon, 19 Nov 2018 19:27:35 +0530 Subject: [PATCH] Update index.md (#24525) fixes typo --- guide/english/redux/redux-selectors/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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