summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2014-12-02 08:25:23 -0500
committerEric Milkie <milkie@10gen.com>2014-12-02 08:25:28 -0500
commit9872c67dafc6d1d5be312b97a74ee0d0d6640c3e (patch)
treebb5f4b07bdb728b3caa126eb5dc61804c10d2bc5
parenta4bb064660fe9d6db93085f7be9564f90afa9b0c (diff)
downloadmongo-9872c67dafc6d1d5be312b97a74ee0d0d6640c3e.tar.gz
SERVER-16137 correct comment
-rw-r--r--jstests/core/apitest_db.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/apitest_db.js b/jstests/core/apitest_db.js
index 066f80115a9..41af5abfaca 100644
--- a/jstests/core/apitest_db.js
+++ b/jstests/core/apitest_db.js
@@ -40,7 +40,7 @@ assert(found, "found test.test in system.namespaces");
// storageEngine in collection options must:
// - be a document
-// - contains a single field of document type with the name of the current storage engine.
+// - contain at least one field of document type with the name of a registered storage engine.
db.getCollection('test').drop();
var storageEngineName = db.serverStatus().storageEngine.name;
assert.commandFailed(db.createCollection('test', {storageEngine: {}}));