diff options
author | Martin Blais <blais@furius.ca> | 2021-09-27 14:06:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 14:06:52 -0400 |
commit | 7143e49e74857a009e16c51f6076eb197b6ccb49 (patch) | |
tree | ff6a49227d101786c741e4d3619af8b36d2d2e0e /absl/strings | |
parent | b1b63f7aa8467ff5c2fc81231f6ec69fe93ca3b0 (diff) |
Fixed typo `constuct` to `construct` in 3 places. (#1022)
Diffstat (limited to 'absl/strings')
-rw-r--r-- | absl/strings/string_view.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/string_view.h b/absl/strings/string_view.h index ea760526..a4c9a652 100644 --- a/absl/strings/string_view.h +++ b/absl/strings/string_view.h @@ -596,7 +596,7 @@ class string_view { } private: - // The constructor from std::string delegates to this constuctor. + // The constructor from std::string delegates to this constructor. // See the comment on that constructor for the rationale. struct SkipCheckLengthTag {}; string_view(const char* data, size_type len, SkipCheckLengthTag) noexcept |