summaryrefslogtreecommitdiff
path: root/absl/base/casts.h
diff options
context:
space:
mode:
authorGravatar Bruce Mitchener <bruce.mitchener@gmail.com>2018-04-20 01:11:44 +0700
committerGravatar Bruce Mitchener <bruce.mitchener@gmail.com>2018-04-20 01:11:44 +0700
commit08760addbe9732d8ee889328229781313baf6e96 (patch)
tree2bc864ece816fdebc00b124741a01472b764b55f /absl/base/casts.h
parent5b535401665cc6aa96d54a5c9b0901153d97210f (diff)
Fix some typos.
Diffstat (limited to 'absl/base/casts.h')
-rw-r--r--absl/base/casts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/casts.h b/absl/base/casts.h
index 3096d4c1..8bd5264d 100644
--- a/absl/base/casts.h
+++ b/absl/base/casts.h
@@ -123,7 +123,7 @@ inline To implicit_cast(typename absl::internal::identity_t<To> to) {
//
// Such casting results in type punning: holding an object in memory of one type
// and reading its bits back using a different type. A `bit_cast()` avoids this
-// issue by implementating its casts using `memcpy()`, which avoids introducing
+// issue by implementing its casts using `memcpy()`, which avoids introducing
// this undefined behavior.
template <typename Dest, typename Source>
inline Dest bit_cast(const Source& source) {