Skip to content

Commit 5ddf63c

Browse files
committed
chore(docs): apply cargo intraconv changes to doc links
cargo intraconv changes markdown links to intra-doc links
1 parent 376588a commit 5ddf63c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ pub struct OccupiedEntry<'a, Value> {
113113
value: &'a mut Value,
114114
}
115115

116-
/// Implementation of [LRU cache](index.html#least-recently-used-lru-cache).
116+
/// Implementation of [LRU cache](self#least-recently-used-lru-cache).
117117
pub struct LruCache<Key, Value> {
118118
map: BTreeMap<Key, (Value, Instant)>,
119119
list: VecDeque<Key>,

0 commit comments

Comments
 (0)