Fix trailing whitespace.

This commit is contained in:
Marcin Fatyga
2016-10-09 14:10:56 +02:00
parent d41c91c1fa
commit def0b4ebc8

View File

@@ -246,8 +246,8 @@ impl Ordering {
} }
} }
/// Chain two orderings. /// Chain two orderings.
/// ///
/// Returns `self` when it's not `Equal`. Otherwise returns `other`. /// Returns `self` when it's not `Equal`. Otherwise returns `other`.
/// # Examples /// # Examples
/// ///
@@ -281,10 +281,10 @@ impl Ordering {
} }
/// Chain the ordering with given function. /// Chain the ordering with given function.
/// ///
/// Returns `self` when it's not `Equal`. Otherwise calls `f` and returns /// Returns `self` when it's not `Equal`. Otherwise calls `f` and returns
/// the result. /// the result.
/// ///
/// # Examples /// # Examples
/// ///
/// ``` /// ```