summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/modifier_current_date.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/ops/modifier_current_date.cpp')
-rw-r--r--src/mongo/db/ops/modifier_current_date.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/ops/modifier_current_date.cpp b/src/mongo/db/ops/modifier_current_date.cpp
index 75d0be014e3..cd328f5fe94 100644
--- a/src/mongo/db/ops/modifier_current_date.cpp
+++ b/src/mongo/db/ops/modifier_current_date.cpp
@@ -84,7 +84,8 @@ Status ModifierCurrentDate::init(const BSONElement& modExpr,
if (foundDollar && foundCount > 1) {
return Status(ErrorCodes::BadValue,
str::stream() << "Too many positional (i.e. '$') elements found in path '"
- << _updatePath.dottedField() << "'");
+ << _updatePath.dottedField()
+ << "'");
}
// Validate and store the type to produce
@@ -113,7 +114,8 @@ Status ModifierCurrentDate::init(const BSONElement& modExpr,
str::stream()
<< "The only valid field of the option is '$type': "
"{$currentDate: {field : {$type: 'date/timestamp'}}}; "
- << "arg: " << argObj);
+ << "arg: "
+ << argObj);
}
}
}