about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorRoman Proskuryakov <humbug@deeptown.org>2018-08-15 22:06:35 +0300
committerRoman Proskuryakov <humbug@deeptown.org>2018-08-15 22:06:35 +0300
commit5bfb7850782c440f27e0a5b64157aed9e04c5cc6 (patch)
tree561a07276dba6bf4f4c9ba87eacd28e88619a276 /src/liballoc
parent9a3a12eaa37b46f4eedd0c93fa61f35e2d748ee8 (diff)
downloadrust-5bfb7850782c440f27e0a5b64157aed9e04c5cc6.tar.gz
rust-5bfb7850782c440f27e0a5b64157aed9e04c5cc6.zip
Review fix
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/borrow.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/borrow.rs b/src/liballoc/borrow.rs
index 95980735f7e..5ae5339138f 100644
--- a/src/liballoc/borrow.rs
+++ b/src/liballoc/borrow.rs
@@ -143,6 +143,7 @@ impl<T> ToOwned for T
 /// ```
 ///
 /// Another example showing how to keep `Cow` in a struct:
+///
 /// ```
 /// use std::borrow::{Cow, ToOwned};
 ///