diff options
author | Abseil Team <absl-team@google.com> | 2021-04-09 08:51:11 -0700 |
---|---|---|
committer | Dino Radaković <dinor@google.com> | 2021-04-13 16:33:48 +0000 |
commit | b97a1ecda869ca8754d467a56c50275cebfeb328 (patch) | |
tree | cfb45ecb84e81c1e1fb54937538fccd8ed63401d /absl/strings | |
parent | 3b4a16abad2c2ddc494371cc39a2946e36d35d11 (diff) |
Export of internal Abseil changes
--
9bd9d083a21d1436816dc842a80d4339aa49a24b by Abseil Team <absl-team@google.com>:
Inline Status::NewRep, pass `message` via string_view in StatusRep ctor
PiperOrigin-RevId: 367641069
--
9cebe53e8f1717f82394501fd9f4bc70d2051b33 by Benjamin Barenblat <bbaren@google.com>:
Fix typo in CordRepRing error message
PiperOrigin-RevId: 367481280
GitOrigin-RevId: 9bd9d083a21d1436816dc842a80d4339aa49a24b
Change-Id: Ie2c51bf6f46abed5c2317ceee30bd2bb59502f8e
Diffstat (limited to 'absl/strings')
-rw-r--r-- | absl/strings/internal/cord_rep_ring.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/internal/cord_rep_ring.cc b/absl/strings/internal/cord_rep_ring.cc index cb95b19a..09951290 100644 --- a/absl/strings/internal/cord_rep_ring.cc +++ b/absl/strings/internal/cord_rep_ring.cc @@ -301,7 +301,7 @@ bool CordRepRing::IsValid(std::ostream& output) const { if (offset >= child->length || entry_length > child->length - offset) { output << "entry[" << head << "] has offset " << offset << " and entry length " << entry_length - << " which are outside of the childs length of " << child->length; + << " which are outside of the child's length of " << child->length; return false; } |