diff options
author | Abseil Team <absl-team@google.com> | 2022-12-27 16:03:34 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-12-27 16:04:44 -0800 |
commit | de6fca2110e7bf6ef812b9064bf302a29ae1fbc7 (patch) | |
tree | 105f0711bb0db8032dc40b9d42915b51b122dd36 /absl/debugging | |
parent | 9733617ebb6e86cd124c5c9ea478dd96b5c27e53 (diff) |
[NFC] fix typo in comment.
PiperOrigin-RevId: 498048994
Change-Id: Iee969b9171921e3ffdca2610f9b93b53678d0b9d
Diffstat (limited to 'absl/debugging')
-rw-r--r-- | absl/debugging/leak_check.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/debugging/leak_check.h b/absl/debugging/leak_check.h index eff162f6..6bd79406 100644 --- a/absl/debugging/leak_check.h +++ b/absl/debugging/leak_check.h @@ -37,7 +37,7 @@ // not also use AddressSanitizer). To use the mode, simply pass // `-fsanitize=leak` to both the compiler and linker. Since GCC does not // currently provide a way of detecting this mode at compile-time, GCC users -// must also pass -DLEAK_SANIITIZER to the compiler. An example Bazel command +// must also pass -DLEAK_SANITIZER to the compiler. An example Bazel command // could be // // $ bazel test --copt=-DLEAK_SANITIZER --copt=-fsanitize=leak |