summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp b/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
index 51823aec2be..ab77d891cd8 100644
--- a/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
+++ b/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
@@ -72,11 +72,12 @@ public:
std::string help() const override {
using FCVP = FeatureCompatibilityVersionParser;
return str::stream()
- << "Set the API version used by this cluster. If set to '" << FCVP::kVersion44
- << "', then " << FCVP::kVersion46 << " features are disabled. If set to '"
- << FCVP::kVersion46 << "', then " << FCVP::kVersion46
+ << "Set the featureCompatibilityVersion used by this cluster. If set to '"
+ << FCVP::kVersion44 << "', then " << FCVP::kVersion451
+ << " features are disabled. If set to '" << FCVP::kVersion451 << "', then "
+ << FCVP::kVersion451
<< " features are enabled, and all nodes in the cluster must be binary version "
- << FCVP::kVersion46 << ". See "
+ << FCVP::kVersion451 << ". See "
<< feature_compatibility_version_documentation::kCompatibilityLink << ".";
}