Skip to content

Commit

Permalink
Fix typo in doc (reduxjs#2625)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjongseok authored and timdorr committed Sep 27, 2017
1 parent d4dfab3 commit fbc1bc6
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 @@ -6,7 +6,7 @@ As mentioned in [Normalizing State Shape](./NormalizingStateShape.md), the Norma

### Simple Merging

One approach is to merge the contents of the action in to the existing state. In this case, we need to do a deep recursive merge, not just a shallow copy. The Lodash `merge` function can handle this for us:
One approach is to merge the contents of the action into the existing state. In this case, we need to do a deep recursive merge, not just a shallow copy. The Lodash `merge` function can handle this for us:

```js
import merge from "lodash/merge";
Expand Down

0 comments on commit fbc1bc6

Please sign in to comment.