From cb6e1d0807566e66cfff87fc489b1aa00ad75305 Mon Sep 17 00:00:00 2001 From: Sofya Tuymedova Date: Tue, 8 Feb 2022 00:29:29 +0300 Subject: [PATCH] docs: phrasing a sentence (#4182) * docs: phrasing a sentence * Update extracting-state-logic-into-a-reducer.md Co-authored-by: dan --- beta/src/pages/learn/extracting-state-logic-into-a-reducer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/pages/learn/extracting-state-logic-into-a-reducer.md b/beta/src/pages/learn/extracting-state-logic-into-a-reducer.md index df85b465..a2d7175a 100644 --- a/beta/src/pages/learn/extracting-state-logic-into-a-reducer.md +++ b/beta/src/pages/learn/extracting-state-logic-into-a-reducer.md @@ -19,7 +19,7 @@ Components with many state updates spread across many event handlers can get ove ## Consolidate state logic with a reducer {/*consolidate-state-logic-with-a-reducer*/} -As your components grow in complexity, it can get harder to see all the different ways that a component's state gets updated at a glance. For example, the `TaskApp` component below holds an array of `tasks` in state and uses three different event handlers to add, remove, and edit tasks: +As your components grow in complexity, it can get harder to see at a glance all the different ways in which a component's state gets updated. For example, the `TaskApp` component below holds an array of `tasks` in state and uses three different event handlers to add, remove, and edit tasks: