@@ -1298,9 +1298,7 @@ pub struct RawEntryBuilderMut<'a, K: 'a, V: 'a, S: 'a> {
1298
1298
/// This `enum` is constructed through the [`raw_entry_mut`] method on [`HashMap`],
1299
1299
/// then calling one of the methods of that [`RawEntryBuilderMut`].
1300
1300
///
1301
- /// [`Entry`]: enum.Entry.html
1302
1301
/// [`raw_entry_mut`]: HashMap::raw_entry_mut
1303
- /// [`RawEntryBuilderMut`]: struct.RawEntryBuilderMut.html
1304
1302
#[ unstable( feature = "hash_raw_entry" , issue = "56167" ) ]
1305
1303
pub enum RawEntryMut < ' a , K : ' a , V : ' a , S : ' a > {
1306
1304
/// An occupied entry.
@@ -1705,8 +1703,6 @@ impl<K: Debug, V: Debug> Debug for Entry<'_, K, V> {
1705
1703
1706
1704
/// A view into an occupied entry in a `HashMap`.
1707
1705
/// It is part of the [`Entry`] enum.
1708
- ///
1709
- /// [`Entry`]: enum.Entry.html
1710
1706
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1711
1707
pub struct OccupiedEntry < ' a , K : ' a , V : ' a > {
1712
1708
base : base:: RustcOccupiedEntry < ' a , K , V > ,
@@ -1721,8 +1717,6 @@ impl<K: Debug, V: Debug> Debug for OccupiedEntry<'_, K, V> {
1721
1717
1722
1718
/// A view into a vacant entry in a `HashMap`.
1723
1719
/// It is part of the [`Entry`] enum.
1724
- ///
1725
- /// [`Entry`]: enum.Entry.html
1726
1720
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1727
1721
pub struct VacantEntry < ' a , K : ' a , V : ' a > {
1728
1722
base : base:: RustcVacantEntry < ' a , K , V > ,
0 commit comments