Skip to content

Commit 163ee8f

Browse files
authored
Update articles/cosmos-db/mongodb/tutorial-update.md
1 parent 7e94872 commit 163ee8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cosmos-db/mongodb/tutorial-update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ db.customers.updateMany(
6767

6868
In the above example, db.customers is the collection name, { city: "New York" } is the filter which matches all the documents that have city field equal to "New York" and { $set: { name: "Jane Smith" } } is the update operation which sets the name field of all the matched documents to "Jane Smith".
6969

70-
You can also use other update operators like $inc, $mul, $rename, $unset etc. to update the data.
70+
You can also use other update operators like $inc, $mul, $rename, $unset, etc. to update the data.
7171

7272
## Next steps
7373

0 commit comments

Comments
 (0)