Skip to content

Commit

Permalink
Grammar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
coryhouse authored Feb 12, 2017
1 parent a461d1e commit 9d645a1
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 9d645a1

Please sign in to comment.