diff options
author | Dino Radakovic <dinor@google.com> | 2023-04-06 11:41:42 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-04-06 11:42:39 -0700 |
commit | 0bc6509b8a7555b45e62946b31d8d39b8e142ae1 (patch) | |
tree | e852805db30318629abb0dde7124533a95da7727 /absl | |
parent | a880427b38b2eca647a6eb0a09b241dbd962a4b9 (diff) |
Fix typo in comment
PiperOrigin-RevId: 522392902
Change-Id: I5764edbe85612e90d02caae49bbf629dcb8879e3
Diffstat (limited to 'absl')
-rw-r--r-- | absl/functional/any_invocable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/functional/any_invocable.h b/absl/functional/any_invocable.h index 3e783c87..788bc1af 100644 --- a/absl/functional/any_invocable.h +++ b/absl/functional/any_invocable.h @@ -266,7 +266,7 @@ class AnyInvocable : private internal_any_invocable::Impl<Sig> { // Exchanges the targets of `*this` and `other`. void swap(AnyInvocable& other) noexcept { std::swap(*this, other); } - // abl::AnyInvocable::operator bool() + // absl::AnyInvocable::operator bool() // // Returns `true` if `*this` is not empty. explicit operator bool() const noexcept { return this->HasValue(); } |