Skip to content

Commit cb0529a

Browse files
committed
Fix mistake in example
1 parent a9eb97b commit cb0529a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/cmp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ impl<T: Clone> Clone for Reverse<T> {
942942
///
943943
/// // Antisymmetry requirement of `Ord` is not given. Only one of a < c and c < a is allowed to be
944944
/// // true, not both or neither.
945-
/// assert_eq!((a < c) as u8 + (b < c) as u8, 2);
945+
/// assert_eq!((a < c) as u8 + (c < a) as u8, 2);
946946
/// ```
947947
///
948948
/// The documentation of [`PartialOrd`] contains further examples, for example it's wrong for

0 commit comments

Comments
 (0)