From: Benjamin Barenblat Date: Thu, 14 Apr 2022 17:20:16 +0000 (+0100) Subject: Fix typo in CordRepRing error message X-Git-Tag: archive/raspbian/0_20210324.2-3+rpi1^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3dc91e56d07c1744f11851f34f74883b64b175a4;p=abseil.git Fix typo in CordRepRing error message Forwarded: yes Applied-Upstream: https://github.com/abseil/abseil-cpp/commit/b97a1ecda869ca8754d467a56c50275cebfeb328 The author works at Google. Upstream applied this patch as Piper revision 367481280 and exported it to GitHub; the Applied-Upstream URL above points to the exported commit. Gbp-Pq: Name cordrepring-typo.diff --- diff --git a/absl/strings/internal/cord_rep_ring.cc b/absl/strings/internal/cord_rep_ring.cc index 4d31d1d..39ac4e9 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; }