mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Fix doc links
This commit is contained in:
parent
362bfc1430
commit
d9803fb873
|
@ -601,7 +601,7 @@ mod entries {
|
|||
|
||||
use super::{ClonableAllocator, HashMap};
|
||||
|
||||
/// A view into an occupied entry in a `HashMap`. This is part of the [`Entry`] enum.
|
||||
/// A view into an occupied entry in a `HashMap`. This is part of the [`crate::Entry`] enum.
|
||||
pub struct OccupiedEntry<'a, K: 'a, V: 'a, ALLOCATOR: Allocator> {
|
||||
key: K,
|
||||
map: &'a mut HashMap<K, V, ALLOCATOR>,
|
||||
|
@ -691,7 +691,7 @@ mod entries {
|
|||
}
|
||||
}
|
||||
|
||||
/// A view into a vacant entry in a `HashMap`. It is part of the [`Entry`] enum.
|
||||
/// A view into a vacant entry in a `HashMap`. It is part of the [`crate::Entry`] enum.
|
||||
pub struct VacantEntry<'a, K: 'a, V: 'a, ALLOCATOR: Allocator> {
|
||||
key: K,
|
||||
map: &'a mut HashMap<K, V, ALLOCATOR>,
|
||||
|
|
Loading…
Reference in a new issue