diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-05-02 20:13:10 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-05-02 20:24:15 +0200 |
commit | d60c3ac625461da89e198b8912bb0bda251ef980 (patch) | |
tree | d6bddb4fc448c4a223cfa860637ed9366ff2cf52 /absl/container/inlined_vector.h | |
parent | 3132b83a1a1c82df959e000057de27e1b8ff692d (diff) | |
download | abseil-d60c3ac625461da89e198b8912bb0bda251ef980.tar.gz abseil-d60c3ac625461da89e198b8912bb0bda251ef980.tar.bz2 abseil-d60c3ac625461da89e198b8912bb0bda251ef980.zip |
Fix spelling mistakes
Diffstat (limited to 'absl/container/inlined_vector.h')
-rw-r--r-- | absl/container/inlined_vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h index 3e807fdd..f0b0aff4 100644 --- a/absl/container/inlined_vector.h +++ b/absl/container/inlined_vector.h @@ -816,7 +816,7 @@ 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 + // 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, ""); |