diff options
author | Abseil Team <absl-team@google.com> | 2023-12-19 14:03:39 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-12-19 14:04:28 -0800 |
commit | 5afcd807d08d89cd1abfd2ed0090796460db6b19 (patch) | |
tree | 4033f68eb5261080b061a29f257d323bc646eb5b /absl | |
parent | 6d17d4bdfc5969984dc9d763789d7886b6319e8f (diff) | |
download | abseil-5afcd807d08d89cd1abfd2ed0090796460db6b19.tar.gz abseil-5afcd807d08d89cd1abfd2ed0090796460db6b19.tar.bz2 abseil-5afcd807d08d89cd1abfd2ed0090796460db6b19.zip |
Fix typo: begnning -> beginning
PiperOrigin-RevId: 592337948
Change-Id: I373943b8daf28781e063b302fc916ca5644e8fe1
Diffstat (limited to 'absl')
-rw-r--r-- | absl/log/internal/conditions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/log/internal/conditions.h b/absl/log/internal/conditions.h index 45a17b0d..645f3c23 100644 --- a/absl/log/internal/conditions.h +++ b/absl/log/internal/conditions.h @@ -57,7 +57,7 @@ // (dangling else, missing switch case) and preserving noreturn semantics (e.g. // on `LOG(FATAL)`) without requiring braces. // -// 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) and prevents shenanigans like // `AFunction(LOG(INFO))` and `decltype(LOG(INFO))`. The apparently-redundant // `default` case makes the condition more amenable to Clang dataflow analysis. |