From def0b4ebc8da5cce04bc24881de8c0e6bb13bbe0 Mon Sep 17 00:00:00 2001 From: Marcin Fatyga Date: Sun, 9 Oct 2016 14:10:56 +0200 Subject: [PATCH] Fix trailing whitespace. --- src/libcore/cmp.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs index 58b3db0ad395..942a236fe9e9 100644 --- a/src/libcore/cmp.rs +++ b/src/libcore/cmp.rs @@ -246,8 +246,8 @@ impl Ordering { } } - /// Chain two orderings. - /// + /// Chain two orderings. + /// /// Returns `self` when it's not `Equal`. Otherwise returns `other`. /// # Examples /// @@ -281,10 +281,10 @@ impl Ordering { } /// Chain the ordering with given function. - /// + /// /// Returns `self` when it's not `Equal`. Otherwise calls `f` and returns /// the result. - /// + /// /// # Examples /// /// ```