Commit 6ddf406 1 parent 60de96d commit 6ddf406 Copy full SHA for 6ddf406
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 19
19
//! [1]: https://en.wikipedia.org/wiki/Hash_array_mapped_trie
20
20
//! [std::cmp::Eq]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
21
21
//! [std::hash::Hash]: https://doc.rust-lang.org/std/hash/trait.Hash.html
22
- //! [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.h
22
+ //! [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
23
23
24
24
use std:: borrow:: Borrow ;
25
25
use std:: cmp:: Ordering ;
@@ -89,7 +89,7 @@ macro_rules! hashset {
89
89
/// [1]: https://en.wikipedia.org/wiki/Hash_array_mapped_trie
90
90
/// [std::cmp::Eq]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
91
91
/// [std::hash::Hash]: https://doc.rust-lang.org/std/hash/trait.Hash.html
92
- /// [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.h
92
+ /// [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
93
93
pub struct HashSet < A , S = RandomState > {
94
94
hasher : Ref < S > ,
95
95
root : Ref < Node < Value < A > > > ,
You can’t perform that action at this time.
0 commit comments