Rollup merge of #81123 - sirh3e:sirh3e-patch-1, r=sfackler

Update cmp.rs

Fixed space
This commit is contained in:
Ashley Mannix 2021-01-18 21:53:33 +10:00 committed by GitHub
commit 0654e20195
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -541,7 +541,7 @@ impl Ordering {
/// assert_eq!(result, Ordering::Equal);
///
/// let x: (i64, i64, i64) = (1, 2, 7);
/// let y: (i64, i64, i64) = (1, 5, 3);
/// let y: (i64, i64, i64) = (1, 5, 3);
/// let result = x.0.cmp(&y.0).then_with(|| x.1.cmp(&y.1)).then_with(|| x.2.cmp(&y.2));
///
/// assert_eq!(result, Ordering::Less);