diff --git a/absl/types/optional.h b/absl/types/optional.h index e952a04a..353e6183 100644 --- a/absl/types/optional.h +++ b/absl/types/optional.h @@ -781,7 +781,7 @@ class optional : private optional_internal::optional_data, // optional::operator*() // - // Accesses the underlying `T `value of an `optional`. If the `optional` is + // Accesses the underlying `T` value of an `optional`. If the `optional` is // empty, behavior is undefined. constexpr const T& operator*() const & { return reference(); } T& operator*() & {