summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/pipeline_command.cpp
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2014-01-29 14:32:59 -0500
committerMathias Stearn <mathias@10gen.com>2014-01-29 18:28:47 -0500
commit242b2247bdff32b536aaad36d92f963e4f8c959c (patch)
treec29da409e5e203ef1c82550c158c842c70591049 /src/mongo/db/commands/pipeline_command.cpp
parent791d6d40fc94eaa7264bce319aab94d98d20df4c (diff)
downloadmongo-242b2247bdff32b536aaad36d92f963e4f8c959c.tar.gz
SERVER-11239 Rename flag to allowDiskUse and include in error messages
Diffstat (limited to 'src/mongo/db/commands/pipeline_command.cpp')
-rw-r--r--src/mongo/db/commands/pipeline_command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/pipeline_command.cpp b/src/mongo/db/commands/pipeline_command.cpp
index 47fc9ecaa18..7a024de270d 100644
--- a/src/mongo/db/commands/pipeline_command.cpp
+++ b/src/mongo/db/commands/pipeline_command.cpp
@@ -278,7 +278,7 @@ namespace {
virtual void help(stringstream &help) const {
help << "{ pipeline: [ { $operator: {...}}, ... ]"
<< ", explain: <bool>"
- << ", allowDiskUsage: <bool>"
+ << ", allowDiskUse: <bool>"
<< ", cursor: {batchSize: <number>}"
<< " }"
<< endl