Skip to content

Commit 6c7fe8e

Browse files
authored
Merge pull request #2472 from jimmyhmiller/fix-dot
Removed extra dot
2 parents cb493d5 + ec5b9c7 commit 6c7fe8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/reducers/ImmutableUpdatePatterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Unfortunately, the process of correctly applying immutable updates to deeply nes
5353
```js
5454
function updateVeryNestedField(state, action) {
5555
return {
56-
....state,
56+
...state,
5757
first : {
5858
...state.first,
5959
second : {

0 commit comments

Comments
 (0)