File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ impl<T: KeyComponent> Key for [T] {
39
39
///
40
40
/// These keys should be equivalent to slices of `T: Ord + Eq + Clone`.
41
41
///
42
- /// [`RadixSet`]: struct.RadixSet.html
43
- /// [`RadixMap`]: struct.RadixMap.html
42
+ /// [`RadixSet`]: set/ struct.RadixSet.html
43
+ /// [`RadixMap`]: map/ struct.RadixMap.html
44
44
pub trait ExtensibleKey : ToOwned {
45
45
/// A single component of the key. Note that it should be `Ord + Eq + Clone`.
46
46
type Component : KeyComponent ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ use key::Key;
10
10
11
11
/// A set based on a [Radix tree](https://en.wikipedia.org/wiki/Radix_tree).
12
12
///
13
- /// See [`RadixMap`](struct.RadixMap.html) for an in-depth explanation of the workings of this
13
+ /// See [`RadixMap`](../map/ struct.RadixMap.html) for an in-depth explanation of the workings of this
14
14
/// struct, as it's simply a wrapper around `RadixMap<K, ()>`.
15
15
pub struct RadixSet < K : Key + ?Sized > {
16
16
map : RadixMap < K , ( ) > ,
You can’t perform that action at this time.
0 commit comments