summaryrefslogtreecommitdiff
path: root/absl
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2022-09-28 16:56:02 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2022-09-28 16:56:50 -0700
commitdce028bdceed82b33be6f20f95fada518bfb7af5 (patch)
tree5dd14849410140e0e4fb1cd8bbbf54b0fc6ff82d /absl
parent80cbb52f4d432d6572f7a40a10b2fd740a7c2c41 (diff)
Documentation: Remove an obsolete note about the implementation of `Cord`.
PiperOrigin-RevId: 477587157 Change-Id: I4527b891222a011f8c1788387479bdc8e4a3bb94
Diffstat (limited to 'absl')
-rw-r--r--absl/strings/cord.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/absl/strings/cord.h b/absl/strings/cord.h
index 03326715..62fcb2c6 100644
--- a/absl/strings/cord.h
+++ b/absl/strings/cord.h
@@ -20,8 +20,7 @@
// structure. A Cord is a string-like sequence of characters optimized for
// specific use cases. Unlike a `std::string`, which stores an array of
// contiguous characters, Cord data is stored in a structure consisting of
-// separate, reference-counted "chunks." (Currently, this implementation is a
-// tree structure, though that implementation may change.)
+// separate, reference-counted "chunks."
//
// Because a Cord consists of these chunks, data can be added to or removed from
// a Cord during its lifetime. Chunks may also be shared between Cords. Unlike a