summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mongo/db/update/update_driver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/update/update_driver.cpp b/src/mongo/db/update/update_driver.cpp
index 0df3cf38098..5b4809342be 100644
--- a/src/mongo/db/update/update_driver.cpp
+++ b/src/mongo/db/update/update_driver.cpp
@@ -132,7 +132,7 @@ void UpdateDriver::parse(
if (updateMod.type() == write_ops::UpdateModification::Type::kPipeline) {
uassert(ErrorCodes::FailedToParse,
- "arrayFilters may not be specified for pipeline-syle updates",
+ "arrayFilters may not be specified for pipeline-style updates",
arrayFilters.empty());
_updateExecutor =
std::make_unique<PipelineExecutor>(_expCtx, updateMod.getUpdatePipeline(), constants);
@@ -142,7 +142,7 @@ void UpdateDriver::parse(
if (updateMod.type() == write_ops::UpdateModification::Type::kDelta) {
uassert(4772603,
- "arrayFilters may not be specified for delta-syle updates",
+ "arrayFilters may not be specified for delta-style updates",
arrayFilters.empty());
_updateType = UpdateType::kDelta;
@@ -170,7 +170,7 @@ void UpdateDriver::parse(
uassert(5857811, "multi update is not supported for transform-style update", !multi);
uassert(5857812,
- "arrayFilters may not be specified for transform-syle updates",
+ "arrayFilters may not be specified for transform-style updates",
arrayFilters.empty());
_updateType = UpdateType::kTransform;