We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a24c252 + fe04423 commit dac57e9Copy full SHA for dac57e9
docs/reference/content/quick-start/index.md
@@ -246,7 +246,7 @@ Remove the document where the field **a** is equal to **3**.
246
var removeDocument = function(db, callback) {
247
// Get the documents collection
248
var collection = db.collection('documents');
249
- // Insert some documents
+ // Delete document where a is 3
250
collection.deleteOne({ a : 3 }, function(err, result) {
251
assert.equal(err, null);
252
assert.equal(1, result.result.n);
0 commit comments