@@ -2851,7 +2851,7 @@ pub trait Iterator {
28512851 Product :: product ( self )
28522852 }
28532853
2854- /// Lexicographically compares the elements of this [`Iterator`] with those
2854+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
28552855 /// of another.
28562856 ///
28572857 /// # Examples
@@ -2873,7 +2873,7 @@ pub trait Iterator {
28732873 self . cmp_by ( other, |x, y| x. cmp ( & y) )
28742874 }
28752875
2876- /// Lexicographically compares the elements of this [`Iterator`] with those
2876+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
28772877 /// of another with respect to the specified comparison function.
28782878 ///
28792879 /// # Examples
@@ -2925,7 +2925,7 @@ pub trait Iterator {
29252925 }
29262926 }
29272927
2928- /// Lexicographically compares the elements of this [`Iterator`] with those
2928+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
29292929 /// of another.
29302930 ///
29312931 /// # Examples
@@ -2949,7 +2949,7 @@ pub trait Iterator {
29492949 self . partial_cmp_by ( other, |x, y| x. partial_cmp ( & y) )
29502950 }
29512951
2952- /// Lexicographically compares the elements of this [`Iterator`] with those
2952+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
29532953 /// of another with respect to the specified comparison function.
29542954 ///
29552955 /// # Examples
@@ -3089,7 +3089,7 @@ pub trait Iterator {
30893089 !self . eq ( other)
30903090 }
30913091
3092- /// Determines if the elements of this [`Iterator`] are lexicographically
3092+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
30933093 /// less than those of another.
30943094 ///
30953095 /// # Examples
@@ -3110,7 +3110,7 @@ pub trait Iterator {
31103110 self . partial_cmp ( other) == Some ( Ordering :: Less )
31113111 }
31123112
3113- /// Determines if the elements of this [`Iterator`] are lexicographically
3113+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
31143114 /// less or equal to those of another.
31153115 ///
31163116 /// # Examples
@@ -3131,7 +3131,7 @@ pub trait Iterator {
31313131 matches ! ( self . partial_cmp( other) , Some ( Ordering :: Less | Ordering :: Equal ) )
31323132 }
31333133
3134- /// Determines if the elements of this [`Iterator`] are lexicographically
3134+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
31353135 /// greater than those of another.
31363136 ///
31373137 /// # Examples
@@ -3152,7 +3152,7 @@ pub trait Iterator {
31523152 self . partial_cmp ( other) == Some ( Ordering :: Greater )
31533153 }
31543154
3155- /// Determines if the elements of this [`Iterator`] are lexicographically
3155+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
31563156 /// greater than or equal to those of another.
31573157 ///
31583158 /// # Examples
0 commit comments