@@ -2916,7 +2916,7 @@ impl<'a, K, V> Cursor<'a, K, V> {
2916
2916
}
2917
2917
}
2918
2918
2919
- /// Returns a reference to the the key and value of the next element without
2919
+ /// Returns a reference to the key and value of the next element without
2920
2920
/// moving the cursor.
2921
2921
///
2922
2922
/// If the cursor is at the end of the map then `None` is returned
@@ -2925,7 +2925,7 @@ impl<'a, K, V> Cursor<'a, K, V> {
2925
2925
self . clone ( ) . next ( )
2926
2926
}
2927
2927
2928
- /// Returns a reference to the the key and value of the previous element
2928
+ /// Returns a reference to the key and value of the previous element
2929
2929
/// without moving the cursor.
2930
2930
///
2931
2931
/// If the cursor is at the start of the map then `None` is returned.
@@ -2958,7 +2958,7 @@ impl<'a, K, V, A> CursorMut<'a, K, V, A> {
2958
2958
Some ( ( & * k, v) )
2959
2959
}
2960
2960
2961
- /// Returns a reference to the the key and value of the next element without
2961
+ /// Returns a reference to the key and value of the next element without
2962
2962
/// moving the cursor.
2963
2963
///
2964
2964
/// If the cursor is at the end of the map then `None` is returned
@@ -2968,7 +2968,7 @@ impl<'a, K, V, A> CursorMut<'a, K, V, A> {
2968
2968
Some ( ( & * k, v) )
2969
2969
}
2970
2970
2971
- /// Returns a reference to the the key and value of the previous element
2971
+ /// Returns a reference to the key and value of the previous element
2972
2972
/// without moving the cursor.
2973
2973
///
2974
2974
/// If the cursor is at the start of the map then `None` is returned.
@@ -3056,7 +3056,7 @@ impl<'a, K, V, A> CursorMutKey<'a, K, V, A> {
3056
3056
}
3057
3057
}
3058
3058
3059
- /// Returns a reference to the the key and value of the next element without
3059
+ /// Returns a reference to the key and value of the next element without
3060
3060
/// moving the cursor.
3061
3061
///
3062
3062
/// If the cursor is at the end of the map then `None` is returned
@@ -3068,7 +3068,7 @@ impl<'a, K, V, A> CursorMutKey<'a, K, V, A> {
3068
3068
Some ( kv)
3069
3069
}
3070
3070
3071
- /// Returns a reference to the the key and value of the previous element
3071
+ /// Returns a reference to the key and value of the previous element
3072
3072
/// without moving the cursor.
3073
3073
///
3074
3074
/// If the cursor is at the start of the map then `None` is returned.
0 commit comments