summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Doliner <michael.doliner@mongodb.com>2020-02-05 16:18:16 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-05 22:29:42 +0000
commit84940076a90c3938decb6a28219f7102307404bd (patch)
treeb99f90daed971e7929e4bbe99b4751d4f6427527
parentb70432be43a75c91a7f7a9c4251719b0747dbad8 (diff)
downloadmongo-84940076a90c3938decb6a28219f7102307404bd.tar.gz
SERVER-43951 Unifies help collection name
-rw-r--r--src/mongo/shell/utils.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/shell/utils.js b/src/mongo/shell/utils.js
index cdd4fa11c9e..af525e001c8 100644
--- a/src/mongo/shell/utils.js
+++ b/src/mongo/shell/utils.js
@@ -1754,9 +1754,9 @@ help = shellHelper.help = function(x) {
print("\t" +
"use <db_name> set current database");
print("\t" +
- "db.foo.find() list objects in collection foo");
+ "db.mycoll.find() list objects in collection mycoll");
print("\t" +
- "db.foo.find( { a : 1 } ) list objects in foo where a == 1");
+ "db.mycoll.find( { a : 1 } ) list objects in mycoll where a == 1");
print(
"\t" +
"it result of the last line evaluated; use to further iterate");