diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-04-24 20:13:05 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-04-24 21:25:50 +0200 |
commit | 421a74dce4c6f768bfcca94ba62b65ded1d50f7c (patch) | |
tree | 5eb2dcfa7d285ad9c8b9c67f33f8e20acf02ff7a /absl/functional | |
parent | 4ffaea74c1f5408e0757547a1ca0518ad43fa9f1 (diff) |
Fix some spelling mistakes
Diffstat (limited to 'absl/functional')
-rw-r--r-- | absl/functional/function_ref.h | 6 | ||||
-rw-r--r-- | absl/functional/internal/any_invocable.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/absl/functional/function_ref.h b/absl/functional/function_ref.h index f9779607..2b9139d3 100644 --- a/absl/functional/function_ref.h +++ b/absl/functional/function_ref.h @@ -66,11 +66,11 @@ class FunctionRef; // FunctionRef // -// An `absl::FunctionRef` is a lightweight wrapper to any invokable object with +// An `absl::FunctionRef` is a lightweight wrapper to any invocable object with // a compatible signature. Generally, an `absl::FunctionRef` should only be used // as an argument type and should be preferred as an argument over a const // reference to a `std::function`. `absl::FunctionRef` itself does not allocate, -// although the wrapped invokable may. +// although the wrapped invocable may. // // Example: // @@ -98,7 +98,7 @@ class FunctionRef<R(Args...)> { std::is_convertible<FR, R>::value>::type; public: - // Constructs a FunctionRef from any invokable type. + // Constructs a FunctionRef from any invocable type. template <typename F, typename = EnableIfCompatible<const F&>> // NOLINTNEXTLINE(runtime/explicit) FunctionRef(const F& f ABSL_ATTRIBUTE_LIFETIME_BOUND) diff --git a/absl/functional/internal/any_invocable.h b/absl/functional/internal/any_invocable.h index 49a46c14..b6a38e37 100644 --- a/absl/functional/internal/any_invocable.h +++ b/absl/functional/internal/any_invocable.h @@ -488,7 +488,7 @@ class CoreImpl { // object. Clear(); - // Perform the actual move/destory operation on the target function. + // Perform the actual move/destroy operation on the target function. other.manager_(FunctionToCall::relocate_from_to, &other.state_, &state_); manager_ = other.manager_; invoker_ = other.invoker_; |