We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376588a commit 5ddf63cCopy full SHA for 5ddf63c
src/lib.rs
@@ -113,7 +113,7 @@ pub struct OccupiedEntry<'a, Value> {
113
value: &'a mut Value,
114
}
115
116
-/// Implementation of [LRU cache](index.html#least-recently-used-lru-cache).
+/// Implementation of [LRU cache](self#least-recently-used-lru-cache).
117
pub struct LruCache<Key, Value> {
118
map: BTreeMap<Key, (Value, Instant)>,
119
list: VecDeque<Key>,
0 commit comments