aboutsummaryrefslogtreecommitdiff
path: root/libcollections/string.rs
diff options
context:
space:
mode:
authorpravic <[email protected]>2016-06-06 23:07:53 +0300
committerpravic <[email protected]>2016-06-06 23:07:53 +0300
commitf2db0929feeb53567655dbdebba7e6b1c3f2f69e (patch)
treec2cf041f838782f9ddd8994146f52e8f498bfe07 /libcollections/string.rs
parentadd 'netio' native import library (diff)
parentMerge branch 'nofp_patch' into libcore_nofp (diff)
downloadkmd-env-rs-f2db0929feeb53567655dbdebba7e6b1c3f2f69e.tar.xz
kmd-env-rs-f2db0929feeb53567655dbdebba7e6b1c3f2f69e.zip
Merge branch 'libcore_nofp'HEADmaster
Diffstat (limited to 'libcollections/string.rs')
-rw-r--r--libcollections/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcollections/string.rs b/libcollections/string.rs
index 306fad2..eedf4c2 100644
--- a/libcollections/string.rs
+++ b/libcollections/string.rs
@@ -184,7 +184,7 @@ use boxed::Box;
/// let len = story.len();
/// let capacity = story.capacity();
///
-/// // story has thirteen bytes
+/// // story has nineteen bytes
/// assert_eq!(19, len);
///
/// // Now that we have our parts, we throw the story away.