Skip to content

Commit 8d8403e

Browse files
CEL Dev Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 938378477
1 parent eb8a894 commit 8d8403e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

common/signature.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

333333
std::string Unescape(std::string_view str) {

internal/time.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)