summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dmitri Gribenko <dmitrig@google.com>2023-08-07 06:55:21 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2023-08-07 06:56:21 -0700
commita45b0177705af2513fe462374e695f7e7a070d12 (patch)
tree6896477a152d3faec4d65a83e0e006576c7213c3
parent70172ada858b8739ce07e8c2f1ecd8c11c8768c7 (diff)
Remove a reference to the global string type, which does not exist as a separate type anymore
PiperOrigin-RevId: 554462574 Change-Id: I749ae0308d76580a2264f35ee8df487da81e0f7b
-rw-r--r--absl/strings/cord.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/cord.h b/absl/strings/cord.h
index 457ccf06..f800207b 100644
--- a/absl/strings/cord.h
+++ b/absl/strings/cord.h
@@ -1618,7 +1618,7 @@ inline bool operator>=(const Cord& x, const Cord& y) {
// Nonmember Cord-to-absl::string_view relational operators.
//
// Due to implicit conversions, these also enable comparisons of Cord with
-// with std::string, ::string, and const char*.
+// with std::string and const char*.
inline bool operator==(const Cord& lhs, absl::string_view rhs) {
size_t lhs_size = lhs.size();
size_t rhs_size = rhs.size();