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
This commit is contained in:
Corey Farwell 2015-03-10 22:47:08 -04:00
parent cfea8ec416
commit d6492e2469

View file

@ -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<u8>`;
/// * We assume that the `Vec` contains valid UTF-8.
#[inline]