diff options
author | Abseil Team <absl-team@google.com> | 2023-02-24 13:50:40 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-02-24 13:51:30 -0800 |
commit | f2b52372f7f553a4e9b2558daf2d14d3adf484da (patch) | |
tree | 3c66d639220d592f690f3eba0cf64111b697b597 | |
parent | 8c79530e076838497e514ae256d9aee15a226579 (diff) |
Remove extra space in comment.
PiperOrigin-RevId: 512155216
Change-Id: Ie66d29bd48ba8523f5fb7f835f721d9aec637eba
-rw-r--r-- | absl/functional/bind_front.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/functional/bind_front.h b/absl/functional/bind_front.h index f9075bd1..a956eb02 100644 --- a/absl/functional/bind_front.h +++ b/absl/functional/bind_front.h @@ -46,7 +46,7 @@ ABSL_NAMESPACE_BEGIN // // Like `std::bind()`, `absl::bind_front()` is implicitly convertible to // `std::function`. In particular, it may be used as a simpler replacement for -// `std::bind()` in most cases, as it does not require placeholders to be +// `std::bind()` in most cases, as it does not require placeholders to be // specified. More importantly, it provides more reliable correctness guarantees // than `std::bind()`; while `std::bind()` will silently ignore passing more // parameters than expected, for example, `absl::bind_front()` will report such |