about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarcin Fatyga <marcinf@google.com>2016-10-09 14:10:56 +0200
committerMarcin Fatyga <marcinf@google.com>2016-10-09 14:10:56 +0200
commitdef0b4ebc8da5cce04bc24881de8c0e6bb13bbe0 (patch)
tree85e700fc2ed84fec0d6a593deacc2726a2f79419
parentd41c91c1fa6633754e7c88ab45224aedd5b5ed92 (diff)
downloadrust-def0b4ebc8da5cce04bc24881de8c0e6bb13bbe0.tar.gz
rust-def0b4ebc8da5cce04bc24881de8c0e6bb13bbe0.zip
Fix trailing whitespace.
-rw-r--r--src/libcore/cmp.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs
index 58b3db0ad39..942a236fe9e 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
     ///
     /// ```