summaryrefslogtreecommitdiff
path: root/absl
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2023-10-05 11:39:57 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2023-10-05 11:40:40 -0700
commitceea796f1d01b31f2b09cacfc217333083253121 (patch)
tree93c377ea78d6695bcbfcdb1ade047e27b89e6a32 /absl
parent8d5db9b986728577fed7d8ec6483d6db669f0a4a (diff)
Fix a small typo in the docs.
PiperOrigin-RevId: 571084409 Change-Id: I4e6c98ac11f4cb40b65cc9484188faa6168718b4
Diffstat (limited to 'absl')
-rw-r--r--absl/container/internal/layout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/internal/layout.h b/absl/container/internal/layout.h
index fbc4e1da..a4ba6101 100644
--- a/absl/container/internal/layout.h
+++ b/absl/container/internal/layout.h
@@ -55,7 +55,7 @@
// `Partial()` comes in handy when the array sizes are embedded into the
// allocation.
//
-// // size_t[1] containing N, size_t[1] containing M, double[N], int[M].
+// // size_t[0] containing N, size_t[1] containing M, double[N], int[M].
// using L = Layout<size_t, size_t, double, int>;
//
// unsigned char* Allocate(size_t n, size_t m) {