From 84940076a90c3938decb6a28219f7102307404bd Mon Sep 17 00:00:00 2001 From: Michael Doliner Date: Wed, 5 Feb 2020 16:18:16 -0500 Subject: SERVER-43951 Unifies help collection name --- src/mongo/shell/utils.js | 4 ++-- 1 file 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 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"); -- cgit v1.2.1