Skip to content

Commit 5287011

Browse files
authored
Doc: Fix code sample.
1 parent 0e078a7 commit 5287011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/deltas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Here's an example combining what we have:
5353
```
5454
delta = {
5555
property1: [ newValue1 ], // obj[property1] = newValue1
56-
property2: [ oldValue2, newValue2 ] // obj[property2] = newValue2 (and previous value was oldValue2)
56+
property2: [ oldValue2, newValue2 ], // obj[property2] = newValue2 (and previous value was oldValue2)
5757
property5: [ oldValue5, 0, 0 ] // delete obj[property5] (and previous value was oldValue5)
5858
}
5959
```

0 commit comments

Comments
 (0)