From b35dd5a8b1603542dfb2c2b06cad9e3d8d78fb08 Mon Sep 17 00:00:00 2001 From: Eduardo Sorribas Date: Fri, 30 Aug 2013 13:53:31 -0400 Subject: [PATCH] Update runCommand docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1317ef3..f1365b0 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ db.runCommand({ping:1}, function(err, result) { or `db.collection.runCommand()` ```js -db.things.runCommand('count', {}, function(err, res) { +db.things.runCommand('count', function(err, res) { console.log(res); }); ```