diff options
author | Evan Brown <ezb@google.com> | 2024-03-18 11:34:18 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-03-18 11:35:21 -0700 |
commit | 5e61a28e48e324b5cac13a6a1e3b6ba423ec2a6f (patch) | |
tree | b6f247924e6db021468d8a723237ab0418adebbd /absl/container/internal/layout.h | |
parent | 4539c540fe48d6a7f0cc4ed3ace2971c9038cc75 (diff) | |
download | abseil-5e61a28e48e324b5cac13a6a1e3b6ba423ec2a6f.tar.gz abseil-5e61a28e48e324b5cac13a6a1e3b6ba423ec2a6f.tar.bz2 abseil-5e61a28e48e324b5cac13a6a1e3b6ba423ec2a6f.zip |
Fix a typo in a comment.
PiperOrigin-RevId: 616895950
Change-Id: I9dc9099e779df4b692496aa5ee5573ef0e7fd826
Diffstat (limited to 'absl/container/internal/layout.h')
-rw-r--r-- | absl/container/internal/layout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/internal/layout.h b/absl/container/internal/layout.h index 7f2b83a2..72c14112 100644 --- a/absl/container/internal/layout.h +++ b/absl/container/internal/layout.h @@ -797,8 +797,8 @@ class LayoutWithStaticSizes // `-1`) or a variable with signed type is used, then it can generate a // warning about a potentially unsafe implicit cast. It would be great if we // could do this for Partial() too, but unfortunately as of C++23 there seems - // to be no way to define a function with a variable number of paramters of a - // certain type, a.k.a. homogenous function parameter packs. So we're forced + // to be no way to define a function with a variable number of parameters of a + // certain type, a.k.a. homogeneous function parameter packs. So we're forced // to choose between explicitly casting the arguments to size_t, which // suppresses all warnings, even potentially valid ones, or implicitly casting // them to size_t, which generates bogus warnings whenever literal arguments |