aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/types/optional.h
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2017-11-02 10:46:34 -0700
committerGravatar misterg <misterg@google.com>2017-11-02 14:17:03 -0400
commitda336a84e9c1f86409b21996164ae9602b37f9ca (patch)
treef98ef38278393da5c697d1e6bd0609fa0474a043 /absl/types/optional.h
parentc56e7827d6657f351dd2639b0224afa96f3a68d4 (diff)
Changes imported from Abseil "staging" branch:
- 9234c6d8d5a55f77642dd0bb09f3844540d913de Fix misplaced whitespace in method comment. by Abseil Team <absl-team@google.com> GitOrigin-RevId: 9234c6d8d5a55f77642dd0bb09f3844540d913de Change-Id: Ia8a5e7fdff4a907ae711587e8955e1bae8d13a2a
Diffstat (limited to 'absl/types/optional.h')
-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*() & {