summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 6400835c3d1..4f45564b1a3 100644
--- a/src/mongo/shell/utils.js
+++ b/src/mongo/shell/utils.js
@@ -1753,9 +1753,9 @@ help = shellHelper.help = function(x) {
print("\t" +
"use <db_name> set current database");
print("\t" +
- "db.mycoll.find() list objects in collection mycoll");
+ "db.mycoll.find() list objects in collection mycoll");
print("\t" +
- "db.mycoll.find( { a : 1 } ) list objects in mycoll 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");