From 97ad082825c8841f20f58749bcbb1c4d1ac2e108 Mon Sep 17 00:00:00 2001 From: Chirag Swadia Date: Wed, 24 Oct 2018 06:08:54 +0200 Subject: [PATCH] Fixed Typo (#25530) --- 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 2b60223110..2988c01867 100644 --- a/guide/english/redux/redux-selectors/index.md +++ b/guide/english/redux/redux-selectors/index.md @@ -21,7 +21,7 @@ With this approach we would have two copies of the items and would be easier for In case of any operation on the data it would be necessary to make the update twice. -Another naive approach would be to transform the data directly in the component making use of Redux mapStateToProps like how it's shown in the code bellow. +Another naive approach would be to transform the data directly in the component making use of Redux mapStateToProps like how it's shown in the code below. ```javascript