diff options
Diffstat (limited to 'absl/types/optional.h')
-rw-r--r-- | absl/types/optional.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/types/optional.h b/absl/types/optional.h index 07e439448dcc..9313fd23c0bb 100644 --- a/absl/types/optional.h +++ b/absl/types/optional.h @@ -845,7 +845,7 @@ class optional : private optional_internal::optional_data<T>, // optional::value_or() // - // Returns either the value of `T` or a passed default `val` if the `optional` + // Returns either the value of `T` or a passed default `v` if the `optional` // is empty. template <typename U> constexpr T value_or(U&& v) const& { |