diff --git a/library/core/src/cmp.rs b/library/core/src/cmp.rs index a17cd63258335..34f7764c49b56 100644 --- a/library/core/src/cmp.rs +++ b/library/core/src/cmp.rs @@ -635,7 +635,7 @@ impl Clone for Reverse { /// Trait for types that form a [total order](https://en.wikipedia.org/wiki/Total_order). /// -/// Implementations must ensure to be consistent with the [`PartialOrd`] implementation, and that +/// Implementations must be consistent with the [`PartialOrd`] implementation, and ensure /// `max`, `min`, and `clamp` are consistent with `cmp`: /// /// - `partial_cmp(a, b) == Some(cmp(a, b))`.