about summary refs log tree commit diff
path: root/absl/meta
diff options
context:
space:
mode:
authorJonathan Cohen <cohenjon@google.com>2018-04-20T21·02-0400
committerGitHub <noreply@github.com>2018-04-20T21·02-0400
commit94ce52d46c171683b1ee22d14277a6d3bdfd7c4c (patch)
treefd22052ad9405ebe67a92a9bd66a4201c07e3dcc /absl/meta
parentfaf0a1b90374eab44e8956973b0e13febdcf3377 (diff)
parent08760addbe9732d8ee889328229781313baf6e96 (diff)
Merge pull request #101 from waywardmonkeys/fix-typos
Fix some typos.
Diffstat (limited to 'absl/meta')
-rw-r--r--absl/meta/type_traits.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/meta/type_traits.h b/absl/meta/type_traits.h
index bb1b0baf1ab3..88af17c395df 100644
--- a/absl/meta/type_traits.h
+++ b/absl/meta/type_traits.h
@@ -73,7 +73,7 @@ struct default_alignment_of_aligned_storage<Len,
 // `std::void_t` metafunction.
 //
 // NOTE: `absl::void_t` does not use the standard-specified implementation so
-// that it can remain compatibile with gcc < 5.1. This can introduce slightly
+// that it can remain compatible with gcc < 5.1. This can introduce slightly
 // different behavior, such as when ordering partial specializations.
 template <typename... Ts>
 using void_t = typename type_traits_internal::VoidTImpl<Ts...>::type;
@@ -194,7 +194,7 @@ struct is_trivially_destructible
 // LWG issue 2116: http://cplusplus.github.io/LWG/lwg-active.html#2116.
 //
 // "T obj();" need to be well-formed and not call any nontrivial operation.
-// Nontrivally destructible types will cause the expression to be nontrivial.
+// Nontrivially destructible types will cause the expression to be nontrivial.
 template <typename T>
 struct is_trivially_default_constructible
     : std::integral_constant<bool, __has_trivial_constructor(T) &&
@@ -225,7 +225,7 @@ struct is_trivially_default_constructible
 // implementation.
 //
 // NOTE: `T obj(declval<const T&>());` needs to be well-formed and not call any
-// nontrivial operation.  Nontrivally destructible types will cause the
+// nontrivial operation.  Nontrivially destructible types will cause the
 // expression to be nontrivial.
 template <typename T>
 struct is_trivially_copy_constructible