Skip to content

Commit 2920ab2

Browse files
author
Chris Cho
authored
DOCSP-9033: feedback fixes for CRUD guide (#71)
1 parent 9d3c282 commit 2920ab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/code-snippets/crud/pizza.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async function run() {
6060
},
6161
},
6262
]);
63-
changeStream.on("change", function(change) {
63+
changeStream.on("change", change => {
6464
const { name, address } = change.fullDocument;
6565
console.log(`New order for ${name} at ${address}.`);
6666
});

0 commit comments

Comments
 (0)