diff options
author | Abseil Team <absl-team@google.com> | 2024-06-26 08:05:22 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-06-26 08:06:22 -0700 |
commit | 3ff94461f8cf00fa976225f3b020e65268e24626 (patch) | |
tree | bc0aad5070a4882b76dde31c8c2fc10c02c8b525 | |
parent | 9957f27686debcb8891b6b135343d3f7cb6384cd (diff) |
internal-only change
PiperOrigin-RevId: 646949076
Change-Id: I0d3fc57aee38e5b3a5b85e2301f5035bfd0e388b
-rw-r--r-- | absl/base/nullability.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/base/nullability.h b/absl/base/nullability.h index 077bd42f..39e9b1cc 100644 --- a/absl/base/nullability.h +++ b/absl/base/nullability.h @@ -208,9 +208,9 @@ using Nullable = nullability_internal::NullableImpl<T>; // migrated into one of the above two nullability states: `Nonnull<T>` or // `Nullable<T>`. // -// NOTE: Because this annotation is the global default state, pointers without -// any annotation are assumed to have "unknown" semantics. This assumption is -// designed to minimize churn and reduce clutter within the codebase. +// NOTE: Because this annotation is the global default state, unannotated +// pointers are assumed to have "unknown" semantics. This assumption is designed +// to minimize churn and reduce clutter within the codebase. // // Example: // |