Skip to content

Commit 7220fbb

Browse files
committed
Fix links in docs
1 parent dc41726 commit 7220fbb

File tree

1 file changed

+7
-2
lines changed
  • src/libstd/collections/hash

1 file changed

+7
-2
lines changed

src/libstd/collections/hash/map.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -1844,7 +1844,10 @@ impl<'a, K, V> InternalEntry<K, V, &'a mut RawTable<K, V>> {
18441844

18451845
/// A builder for computing where in a HashMap a key-value pair would be stored.
18461846
///
1847-
/// See the [`HashMap::raw_entry_mut`][] docs for usage examples.
1847+
/// See the [`HashMap::raw_entry_mut`] docs for usage examples.
1848+
///
1849+
/// [`HashMap::raw_entry_mut`]: struct.HashMap.html#method.raw_entry_mut
1850+
18481851
#[unstable(feature = "hash_raw_entry", issue = "54043")]
18491852
pub struct RawEntryBuilderMut<'a, K: 'a, V: 'a, S: 'a> {
18501853
map: &'a mut HashMap<K, V, S>,
@@ -1888,7 +1891,9 @@ pub struct RawVacantEntryMut<'a, K: 'a, V: 'a, S: 'a> {
18881891

18891892
/// A builder for computing where in a HashMap a key-value pair would be stored.
18901893
///
1891-
/// See the [`HashMap::raw_entry`][] docs for usage examples.
1894+
/// See the [`HashMap::raw_entry`] docs for usage examples.
1895+
///
1896+
/// [`HashMap::raw_entry`]: struct.HashMap.html#method.raw_entry
18921897
#[unstable(feature = "hash_raw_entry", issue = "54043")]
18931898
pub struct RawEntryBuilder<'a, K: 'a, V: 'a, S: 'a> {
18941899
map: &'a HashMap<K, V, S>,

0 commit comments

Comments
 (0)