summaryrefslogtreecommitdiff
path: root/absl/meta
diff options
context:
space:
mode:
authorGravatar Vertexwahn <julian.amann@tum.de>2023-04-27 22:10:09 +0200
committerGravatar Vertexwahn <julian.amann@tum.de>2023-04-27 22:10:09 +0200
commit9c32e50df8e7bbd777c64107e7580ed434f003c0 (patch)
tree89f513c0043f88ab2b9097d81bd463ab9f1935c8 /absl/meta
parent65109ecdf01a829bdb5e428174b3abb181e75826 (diff)
Fix spelling mistakes
Diffstat (limited to 'absl/meta')
-rw-r--r--absl/meta/type_traits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/meta/type_traits.h b/absl/meta/type_traits.h
index 01a0155e..abaf96af 100644
--- a/absl/meta/type_traits.h
+++ b/absl/meta/type_traits.h
@@ -505,7 +505,7 @@ struct is_trivially_relocatable
#else
// Otherwise we use a fallback that detects only those types we can feasibly
// detect. Any time that has trivial move-construction and destruction
-// operations is by definition trivally relocatable.
+// operations is by definition trivially relocatable.
template <class T>
struct is_trivially_relocatable
: absl::conjunction<absl::is_trivially_move_constructible<T>,