Skip to content

Commit

Permalink
Merge pull request reduxjs#2237 from coryhouse/patch-9
Browse files Browse the repository at this point in the history
Grammar fix
  • Loading branch information
markerikson authored Feb 12, 2017
2 parents a461d1e + 9d645a1 commit 190d016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/recipes/reducers/UpdatingNormalizedData.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 190d016

Please sign in to comment.