Refer to "slice" instead of "vector" in Ord and PartialOrd trait impl of slice

This commit is contained in:
Konrad Höffner 2024-03-06 10:13:05 +01:00 committed by GitHub
parent 80399064af
commit 6223e4c734
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ where
#[stable(feature = "rust1", since = "1.0.0")]
impl<T: Eq> Eq for [T] {}
/// Implements comparison of vectors [lexicographically](Ord#lexicographical-comparison).
/// Implements comparison of slices [lexicographically](Ord#lexicographical-comparison).
#[stable(feature = "rust1", since = "1.0.0")]
impl<T: Ord> Ord for [T] {
fn cmp(&self, other: &[T]) -> Ordering {
@ -32,7 +32,7 @@ impl<T: Ord> Ord for [T] {
}
}
/// Implements comparison of vectors [lexicographically](Ord#lexicographical-comparison).
/// Implements comparison of slices [lexicographically](Ord#lexicographical-comparison).
#[stable(feature = "rust1", since = "1.0.0")]
impl<T: PartialOrd> PartialOrd for [T] {
fn partial_cmp(&self, other: &[T]) -> Option<Ordering> {