about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-07-06 17:06:30 -0400
committerDaniel Micay <danielmicay@gmail.com>2013-07-06 17:06:30 -0400
commit01833de7ea4c3d73351277b52f841d42d7d2dbb8 (patch)
tree68d707f10ec0d76e62d7f2e379d0f6d73830f1b3 /src/libstd
parent3e933b199c69e1b6c32ecb65bb8f06127cfb8312 (diff)
downloadrust-01833de7ea4c3d73351277b52f841d42d7d2dbb8.tar.gz
rust-01833de7ea4c3d73351277b52f841d42d7d2dbb8.zip
remove extra::rope
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.

Closes #2236, #2744
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/str.rs3
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;