summaryrefslogtreecommitdiff
path: root/absl/container/inlined_vector.h
diff options
context:
space:
mode:
authorGravatar Copybara-Service <copybara-worker@google.com>2023-05-03 07:41:30 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2023-05-03 07:41:30 -0700
commit3e9f08d9fb77b685e14e87630036e7b6cf09c2c6 (patch)
tree4e19365188ca6677bf178597b4eee4e7ea91335e /absl/container/inlined_vector.h
parent3132b83a1a1c82df959e000057de27e1b8ff692d (diff)
parentd60c3ac625461da89e198b8912bb0bda251ef980 (diff)
Merge pull request #1441 from Vertexwahn:fix-spelling3
PiperOrigin-RevId: 529086715 Change-Id: Id5462322d5707a1b4475438520fcb70ee7b15450
Diffstat (limited to 'absl/container/inlined_vector.h')
-rw-r--r--absl/container/inlined_vector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h
index 3e807fdd..245e1c57 100644
--- a/absl/container/inlined_vector.h
+++ b/absl/container/inlined_vector.h
@@ -816,8 +816,8 @@ class InlinedVector {
void MoveAssignment(MemcpyPolicy, InlinedVector&& other) {
// Assumption check: we shouldn't be told to use memcpy to implement move
- // asignment unless we have trivially destructible elements and an allocator
- // that does nothing fancy.
+ // assignment unless we have trivially destructible elements and an
+ // allocator that does nothing fancy.
static_assert(absl::is_trivially_destructible<value_type>::value, "");
static_assert(std::is_same<A, std::allocator<value_type>>::value, "");