From d6492e24691751a54daa55c47c7062cc8b50faaf Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Tue, 10 Mar 2015 22:47:08 -0400 Subject: [PATCH] Fix markdown bullet points in function docs Markdown requires a newline before bullet points, and since there's not one here, they'll get rendered incorrectly --- src/libcollections/string.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs index 83c63e47e506b..cc7cd0509029f 100644 --- a/src/libcollections/string.rs +++ b/src/libcollections/string.rs @@ -314,6 +314,7 @@ impl String { /// Creates a new `String` from a length, capacity, and pointer. /// /// This is unsafe because: + /// /// * We call `Vec::from_raw_parts` to get a `Vec`; /// * We assume that the `Vec` contains valid UTF-8. #[inline]