Skip to content

Commit 5172640

Browse files
author
Chris Cho
authored
Merge pull request #204 from ccho-mongodb/080422-node-fixes
080422 Node Field Case Code Example Fixes
2 parents 5bf72e4 + 3d89a47 commit 5172640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/includes/code/node/crud-update-documents.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const filter = { };
33
const updateDoc = {
44
$mul: {
5-
Radius: 1.60934
5+
radius: 1.60934
66
}
77
};
88

source/includes/code/node/crud-update-final-query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function run() {
1717
const filter = {};
1818
const updateDoc = {
1919
$mul: {
20-
Radius: 1.60934,
20+
radius: 1.60934,
2121
},
2222
};
2323

0 commit comments

Comments
 (0)