]> git.lizzy.rs Git - rust.git/commitdiff
Fix trailing whitespace.
authorHavvy <ryan.havvy@gmail.com>
Mon, 22 May 2017 23:33:55 +0000 (16:33 -0700)
committerHavvy <ryan.havvy@gmail.com>
Mon, 22 May 2017 23:33:55 +0000 (16:33 -0700)
src/libcore/ops.rs

index f2385cfcd787b80fdc597f252ef8b1f1ea5b7182..dd1990784c404bbd6feacf3c441b255c3696cb28 100644 (file)
 /// `drop` method will be called for `Outer` and then the `drop` method for
 /// `Inner` will be called. Therefore `main` prints `Dropping Outer!` and then
 /// `Dropping Inner!`.
-/// 
+///
 /// ```
 /// struct Inner;
 /// struct Outer(Inner);
 ///
 /// ```
 /// struct PrintOnDrop(&'static str);
-/// 
+///
 /// fn main() {
 ///     let _first = PrintOnDrop("Declared first!");
 ///     let _second = PrintOnDrop("Declared second!");