about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-12 09:14:31 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-12 09:14:31 +0530
commit99dc60dc249eca7a8ff4411aaafa49204403b38f (patch)
tree6006fb02cd3c5a0aed05ff5dbfd48e1d0f78adbe /src
parent6290a344a6088598be2685f01ba613656e435b1f (diff)
parentd6492e24691751a54daa55c47c7062cc8b50faaf (diff)
downloadrust-99dc60dc249eca7a8ff4411aaafa49204403b38f.tar.gz
rust-99dc60dc249eca7a8ff4411aaafa49204403b38f.zip
Rollup merge of #23270 - frewsxcv:patch-5, r=alexcrichton
 Markdown requires a newline before bullet points, and since there's not one here, they'll get rendered incorrectly
Diffstat (limited to 'src')
-rw-r--r--src/libcollections/string.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs
index 83c63e47e50..cc7cd050902 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<u8>`;
     /// * We assume that the `Vec` contains valid UTF-8.
     #[inline]