diff options
author | Gregory Pataky <gregpataky@google.com> | 2024-07-14 14:43:45 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-07-14 14:44:45 -0700 |
commit | b86d574c5a8ca3344d02c312a63cebb49deeacfc (patch) | |
tree | ea4b73cdbbe7cebf458011a339d9667b8cbd32a0 /absl | |
parent | cd75cb4ae32c46c84cef9a9c78b42174f22ed0ac (diff) |
Small type fix in absl/log/internal/log_impl.h
PiperOrigin-RevId: 652291236
Change-Id: If590aaec354cb4b3f3ccbf91d1d05e75eb1c4c4c
Diffstat (limited to 'absl')
-rw-r--r-- | absl/log/internal/log_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/log/internal/log_impl.h b/absl/log/internal/log_impl.h index b44ed068..a67f2f31 100644 --- a/absl/log/internal/log_impl.h +++ b/absl/log/internal/log_impl.h @@ -42,7 +42,7 @@ ABSL_LOGGING_INTERNAL_DLOG##severity.InternalStream() #endif -// The `switch` ensures that this expansion is the begnning of a statement (as +// The `switch` ensures that this expansion is the beginning of a statement (as // opposed to an expression). The use of both `case 0` and `default` is to // suppress a compiler warning. #define ABSL_LOG_INTERNAL_VLOG_IMPL(verbose_level) \ |