Fix trailing whitespace.

This commit is contained in:
Havvy 2017-05-22 16:33:55 -07:00
parent d7927ffb8f
commit 5f4b0ffe59

View File

@ -184,7 +184,7 @@ use marker::Unsize;
/// `drop` method will be called for `Outer` and then the `drop` method for /// `drop` method will be called for `Outer` and then the `drop` method for
/// `Inner` will be called. Therefore `main` prints `Dropping Outer!` and then /// `Inner` will be called. Therefore `main` prints `Dropping Outer!` and then
/// `Dropping Inner!`. /// `Dropping Inner!`.
/// ///
/// ``` /// ```
/// struct Inner; /// struct Inner;
/// struct Outer(Inner); /// struct Outer(Inner);
@ -211,7 +211,7 @@ use marker::Unsize;
/// ///
/// ``` /// ```
/// struct PrintOnDrop(&'static str); /// struct PrintOnDrop(&'static str);
/// ///
/// fn main() { /// fn main() {
/// let _first = PrintOnDrop("Declared first!"); /// let _first = PrintOnDrop("Declared first!");
/// let _second = PrintOnDrop("Declared second!"); /// let _second = PrintOnDrop("Declared second!");