aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2023-12-19 14:03:39 -0800
committerCopybara-Service <copybara-worker@google.com>2023-12-19 14:04:28 -0800
commit5afcd807d08d89cd1abfd2ed0090796460db6b19 (patch)
tree4033f68eb5261080b061a29f257d323bc646eb5b
parent6d17d4bdfc5969984dc9d763789d7886b6319e8f (diff)
downloadabseil-cpp-5afcd807d08d89cd1abfd2ed0090796460db6b19.tar.gz
Fix typo: begnning -> beginning
PiperOrigin-RevId: 592337948 Change-Id: I373943b8daf28781e063b302fc916ca5644e8fe1
-rw-r--r--absl/log/internal/conditions.h2
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.