From 9d645a11fc02532e7743a234b6e826b20290d656 Mon Sep 17 00:00:00 2001 From: Cory House Date: Sun, 12 Feb 2017 14:51:50 -0600 Subject: [PATCH] Grammar fix --- docs/recipes/reducers/UpdatingNormalizedData.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/reducers/UpdatingNormalizedData.md b/docs/recipes/reducers/UpdatingNormalizedData.md index b0f48a74ae..1ea59b2301 100644 --- a/docs/recipes/reducers/UpdatingNormalizedData.md +++ b/docs/recipes/reducers/UpdatingNormalizedData.md @@ -125,7 +125,7 @@ const commentsReducer = combineReducers({ }); ``` -The example is a bit long, because it's showing how all the different slice reducers and case reducers fit together. Note that the delegation involved here. The `postsById` slice reducer delegates the work for this case to `addComment`, which inserts the new Comment's ID into the correct Post item. Meanwhile, both the `commentsById` and `allComments` slice reducers have their own case reducers, which update the Comments lookup table and list of all Comment IDs appropriately. +The example is a bit long, because it's showing how all the different slice reducers and case reducers fit together. Note the delegation involved here. The `postsById` slice reducer delegates the work for this case to `addComment`, which inserts the new Comment's ID into the correct Post item. Meanwhile, both the `commentsById` and `allComments` slice reducers have their own case reducers, which update the Comments lookup table and list of all Comment IDs appropriately. ## Other Approaches