1
Fork 0

doc: Fix comment in std::string::String example code

This commit is contained in:
Haiko Schol 2016-05-12 21:49:14 +02:00
parent e88defe718
commit d4bff0cdda

View file

@ -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.