Skip to content

Commit

Permalink
minor: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
banker committed Mar 23, 2011
1 parent 9d47ef6 commit 581632f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/mongo.js
Expand Up @@ -424,7 +424,7 @@ MongoHandler.prototype = {
this._tutorialPtr = 9;
return PTAG('9. Deleting data') +
PTAG("To delete matching documents only, add a query selector to the remove method:") +
PTAG(" db.users.remove({name: 'Sue'});")
PTAG(" db.users.remove({name: 'Sue'});") +
PTAG("To delete everything from a collection:") +
PTAG(" db.scores.remove();");
},
Expand Down

0 comments on commit 581632f

Please sign in to comment.