Skip to content

Commit a87d38d

Browse files
Merge pull request #217436 from seesharprun/cosmos-fix-partial-incr
Cosmos DB | Fix reference to increment operation in partial doc update
2 parents 597a41a + e8c4d96 commit a87d38d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cosmos-db/partial-document-update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ A JSON Patch document:
4747
{ "op": "add", "path": "/color", "value": "silver" },
4848
{ "op": "remove", "path": "/used" },
4949
{ "op": "set", "path": "/price", "value": 355.45 }
50-
{ "op": "increment", "path": "/inventory/quantity", "value": 10 }
50+
{ "op": "incr", "path": "/inventory/quantity", "value": 10 }
5151
]
5252
```
5353

0 commit comments

Comments
 (0)