Skip to content

Commit 08ac3a0

Browse files
committed
Remove duplicate section
1 parent aabd713 commit 08ac3a0

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

core/src/cmp.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -775,19 +775,7 @@ impl<T: Clone> Clone for Reverse<T> {
775775
///
776776
/// ## How can I implement `Ord`?
777777
///
778-
/// `Ord` requires that the type also be [`PartialOrd`], [`PartialEq`] and [`Eq`].
779-
///
780-
/// If you manually implement `Ord`, you should also implement [`PartialOrd`]. It is a logic error
781-
/// to have [`PartialOrd`] and `Ord` disagree, so it is best to have the logic in `Ord` and
782-
/// implement [`PartialOrd`] as `Some(self.cmp(other))`.
783-
///
784-
/// Conceptually [`PartialOrd`] and `Ord` form a similar relationship to [`PartialEq`] and [`Eq`].
785-
/// [`PartialEq`] defines an equality relationship between types, and [`Eq`] defines an additional
786-
/// property on top of the properties implied by [`PartialEq`], namely reflexivity. In a similar
787-
/// fashion `Ord` builds on top of [`PartialOrd`] and adds further properties, such as totality,
788-
/// which means all values must be comparable.
789-
///
790-
/// `Ord` requires that the type also be PartialOrd, PartialEq, and Eq.
778+
/// `Ord` requires that the type also be [`PartialOrd`], [`PartialEq`], and [`Eq`].
791779
///
792780
/// Because `Ord` implies a stronger ordering relationship than [`PartialOrd`], and both `Ord` and
793781
/// [`PartialOrd`] must agree, you must choose how to implement `Ord` **first**. You can choose to

0 commit comments

Comments
 (0)