From d4bff0cddaeedcac954c10930b71f5f2ceba286c Mon Sep 17 00:00:00 2001 From: Haiko Schol Date: Thu, 12 May 2016 21:49:14 +0200 Subject: [PATCH] doc: Fix comment in std::string::String example code --- src/libcollections/string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs index 306fad2328b62..eedf4c2c11f34 100644 --- a/src/libcollections/string.rs +++ b/src/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.