Commit dce028bd by Abseil Team Committed by Copybara-Service

Documentation: Remove an obsolete note about the implementation of `Cord`.

PiperOrigin-RevId: 477587157
Change-Id: I4527b891222a011f8c1788387479bdc8e4a3bb94
parent 80cbb52f
...@@ -20,8 +20,7 @@ ...@@ -20,8 +20,7 @@
// structure. A Cord is a string-like sequence of characters optimized for // structure. A Cord is a string-like sequence of characters optimized for
// specific use cases. Unlike a `std::string`, which stores an array of // specific use cases. Unlike a `std::string`, which stores an array of
// contiguous characters, Cord data is stored in a structure consisting of // contiguous characters, Cord data is stored in a structure consisting of
// separate, reference-counted "chunks." (Currently, this implementation is a // separate, reference-counted "chunks."
// tree structure, though that implementation may change.)
// //
// Because a Cord consists of these chunks, data can be added to or removed from // 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 // a Cord during its lifetime. Chunks may also be shared between Cords. Unlike a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment