We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9eb97b commit cb0529aCopy full SHA for cb0529a
core/src/cmp.rs
@@ -942,7 +942,7 @@ impl<T: Clone> Clone for Reverse<T> {
942
///
943
/// // Antisymmetry requirement of `Ord` is not given. Only one of a < c and c < a is allowed to be
944
/// // true, not both or neither.
945
-/// assert_eq!((a < c) as u8 + (b < c) as u8, 2);
+/// assert_eq!((a < c) as u8 + (c < a) as u8, 2);
946
/// ```
947
948
/// The documentation of [`PartialOrd`] contains further examples, for example it's wrong for
0 commit comments