diff options
| author | bors <bors@rust-lang.org> | 2013-07-07 15:20:01 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-07 15:20:01 -0700 |
| commit | ddf8247d7f1864372e3e74ee2374a2a257569c7c (patch) | |
| tree | 470383e05c5c22549f4dc1b41d35e024e194b85b /src/libstd | |
| parent | 28643d4135b453888be3f383c3f5f751f13bb647 (diff) | |
| parent | 01833de7ea4c3d73351277b52f841d42d7d2dbb8 (diff) | |
| download | rust-ddf8247d7f1864372e3e74ee2374a2a257569c7c.tar.gz rust-ddf8247d7f1864372e3e74ee2374a2a257569c7c.zip | |
auto merge of #7629 : thestinger/rust/rope, r=graydon
It's broken/unmaintained and needs to be rewritten to avoid managed pointers and needless copies. A full rewrite is necessary and the API will need to be redone so it's not worth keeping this around (#7628). Closes #2236, #2744
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/str.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs index 564c58f7097..748d5f05aae 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -13,8 +13,7 @@ * * Strings are a packed UTF-8 representation of text, stored as null * terminated buffers of u8 bytes. Strings should be indexed in bytes, - * for efficiency, but UTF-8 unsafe operations should be avoided. For - * some heavy-duty uses, try extra::rope. + * for efficiency, but UTF-8 unsafe operations should be avoided. */ use at_vec; |
