@@ -1298,9 +1298,7 @@ pub struct RawEntryBuilderMut<'a, K: 'a, V: 'a, S: 'a> {
12981298/// This `enum` is constructed through the [`raw_entry_mut`] method on [`HashMap`],
12991299/// then calling one of the methods of that [`RawEntryBuilderMut`].
13001300///
1301- /// [`Entry`]: enum.Entry.html
13021301/// [`raw_entry_mut`]: HashMap::raw_entry_mut
1303- /// [`RawEntryBuilderMut`]: struct.RawEntryBuilderMut.html
13041302#[ unstable( feature = "hash_raw_entry" , issue = "56167" ) ]
13051303pub enum RawEntryMut < ' a , K : ' a , V : ' a , S : ' a > {
13061304 /// An occupied entry.
@@ -1705,8 +1703,6 @@ impl<K: Debug, V: Debug> Debug for Entry<'_, K, V> {
17051703
17061704/// A view into an occupied entry in a `HashMap`.
17071705/// It is part of the [`Entry`] enum.
1708- ///
1709- /// [`Entry`]: enum.Entry.html
17101706#[ stable( feature = "rust1" , since = "1.0.0" ) ]
17111707pub struct OccupiedEntry < ' a , K : ' a , V : ' a > {
17121708 base : base:: RustcOccupiedEntry < ' a , K , V > ,
@@ -1721,8 +1717,6 @@ impl<K: Debug, V: Debug> Debug for OccupiedEntry<'_, K, V> {
17211717
17221718/// A view into a vacant entry in a `HashMap`.
17231719/// It is part of the [`Entry`] enum.
1724- ///
1725- /// [`Entry`]: enum.Entry.html
17261720#[ stable( feature = "rust1" , since = "1.0.0" ) ]
17271721pub struct VacantEntry < ' a , K : ' a , V : ' a > {
17281722 base : base:: RustcVacantEntry < ' a , K , V > ,
0 commit comments