aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--absl/types/optional.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/types/optional.h b/absl/types/optional.h
index e952a04..353e618 100644
--- a/absl/types/optional.h
+++ b/absl/types/optional.h
@@ -781,7 +781,7 @@ class optional : private optional_internal::optional_data<T>,
// 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*() & {