Skip to content

Commit dac57e9

Browse files
authored
Merge pull request #1477 from oBusk/patch-1
Fix typo in node quickstart
2 parents a24c252 + fe04423 commit dac57e9

File tree

1 file changed

+1
-1
lines changed
  • docs/reference/content/quick-start

1 file changed

+1
-1
lines changed

docs/reference/content/quick-start/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Remove the document where the field **a** is equal to **3**.
246246
var removeDocument = function(db, callback) {
247247
// Get the documents collection
248248
var collection = db.collection('documents');
249-
// Insert some documents
249+
// Delete document where a is 3
250250
collection.deleteOne({ a : 3 }, function(err, result) {
251251
assert.equal(err, null);
252252
assert.equal(1, result.result.n);

0 commit comments

Comments
 (0)