Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
JustForFun88 committed Apr 4, 2022
1 parent cbbd62d commit b2d10ff
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,18 +322,16 @@ impl<K1, K2, V, S> DHashMap<K1, K2, V, S> {
///
/// # Note
///
/// Internally [`DHashMap`] use two [`HashMap`]. One of type
/// Internally [`DHashMap`] use two [`HashMap`](`std::collections::HashMap`). One of type
/// `HashMap<K1, (K2, V)>` to hold the `(K2, V)` tuple, and second one of type
/// `HashMap<K2, K1>` just for holding the primary key of type `K1`.
///
/// Created iterator iterate only through first [`HashMap`] of type `HashMap<K1, (K2, V)>`.
/// So that, if you previously used ['insert_unchecked'] method,
/// Created iterator iterate only through first [`HashMap`](`std::collections::HashMap`)
/// of type `HashMap<K1, (K2, V)>`.
/// So that, if you previously used [`insert_unchecked`](DHashMap::insert_unchecked) method,
/// this method can return false second keys (key #2) in case of **unsynchronization**
/// between first keys of type `K1` and second keys of type `K2`. See ['insert_unchecked']
/// method documentation for more.
///
/// [`HashMap`]: (`std::collections::HashMap`)
/// ['insert_unchecked']: (DHashMap::insert_unchecked)
/// between first keys of type `K1` and second keys of type `K2`. See
/// [`insert_unchecked`](DHashMap::insert_unchecked) method documentation for more.
///
/// # Examples
///
Expand Down

0 comments on commit b2d10ff

Please sign in to comment.