summaryrefslogtreecommitdiff
path: root/absl/container
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2022-06-10 09:53:15 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2022-06-10 09:53:55 -0700
commit9431a837919ba242eb7560a3ec74c55db3a027d2 (patch)
tree43d4795fc709d8570caa69bbae7e1364d7bdc5c9 /absl/container
parent45eba9c16a513cda7fe53b44889c7300f158cf3d (diff)
Fix several typos in comments.
PiperOrigin-RevId: 454185620 Change-Id: Ifdff33cec4bdd63f160a8d3c18f959ac2a3b6f25
Diffstat (limited to 'absl/container')
-rw-r--r--absl/container/internal/inlined_vector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/internal/inlined_vector.h b/absl/container/internal/inlined_vector.h
index bc1b8c1b..54c92a01 100644
--- a/absl/container/internal/inlined_vector.h
+++ b/absl/container/internal/inlined_vector.h
@@ -610,7 +610,7 @@ auto Storage<T, N, A>::Resize(ValueAdapter values, SizeType<A> new_size)
// Steps:
// a. Allocate new backing store.
// b. Construct new elements in new backing store.
- // c. Move existing elements from old backing store to now.
+ // c. Move existing elements from old backing store to new backing store.
// d. Destroy all elements in old backing store.
// Use transactional wrappers for the first two steps so we can roll
// back if necessary due to exceptions.