File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ absl::optional<TypeSpec> ParseBuiltinOrWrapper(std::string_view name_str) {
327327 std::make_unique<TypeSpec>(DynTypeSpec ())));
328328 }
329329
330- return absl ::nullopt ;
330+ return std ::nullopt ;
331331}
332332
333333std::string Unescape (std::string_view str) {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ absl::Duration MaxDuration() {
4242 // intent is to widen the CEL spec to support the larger range and match
4343 // google.protobuf.Duration from protocol buffer messages, which this
4444 // implementation currently supports.
45- // TODO(google /cel-spec/issues/214): revisit
45+ // TODO(cel-expr /cel-spec/issues/214): revisit
4646 return absl::Seconds (google::protobuf::util::TimeUtil::kDurationMaxSeconds ) +
4747 absl::Nanoseconds (google::protobuf::util::TimeUtil::kDurationMaxNanoseconds );
4848}
@@ -52,7 +52,7 @@ absl::Duration MinDuration() {
5252 // intent is to widen the CEL spec to support the larger range and match
5353 // google.protobuf.Duration from protocol buffer messages, which this
5454 // implementation currently supports.
55- // TODO(google /cel-spec/issues/214): revisit
55+ // TODO(cel-expr /cel-spec/issues/214): revisit
5656 return absl::Seconds (google::protobuf::util::TimeUtil::kDurationMinSeconds ) +
5757 absl::Nanoseconds (google::protobuf::util::TimeUtil::kDurationMinNanoseconds );
5858}
You can’t perform that action at this time.
0 commit comments