about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-03-05 09:41:35 +0000
committerSimon Sapin <simon.sapin@exyr.org>2014-03-05 09:41:35 +0000
commitc92cdad3ddfc6cce608af5b4cf59115b3745ab39 (patch)
tree55da013965518883fa1f0346d156e1b8226bdab8 /src/libstd
parent87a31f6f0f15d70ed0d7243379e2c26cd1a4df37 (diff)
downloadrust-c92cdad3ddfc6cce608af5b4cf59115b3745ab39.tar.gz
rust-c92cdad3ddfc6cce608af5b4cf59115b3745ab39.zip
Str::slice_chars() is O(end), not O(end - begin)
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/str.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs
index ef9be6ee70c..20aaafbe677 100644
--- a/src/libstd/str.rs
+++ b/src/libstd/str.rs
@@ -1997,8 +1997,8 @@ pub trait StrSlice<'a> {
     /// handle edge cases such as leaving a combining character as the
     /// first code point of the string.
     ///
-    /// Due to the design of UTF-8, this operation is `O(end -
-    /// begin)`. See `slice`, `slice_to` and `slice_from` for `O(1)`
+    /// Due to the design of UTF-8, this operation is `O(end)`.
+    /// See `slice`, `slice_to` and `slice_from` for `O(1)`
     /// variants that use byte indices rather than code point
     /// indices.
     ///