Skip to content

Commit 6ddf406

Browse files
committed
Broken link fix.
1 parent 60de96d commit 6ddf406

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hash/set.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//! [1]: https://en.wikipedia.org/wiki/Hash_array_mapped_trie
2020
//! [std::cmp::Eq]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
2121
//! [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
2323
2424
use std::borrow::Borrow;
2525
use std::cmp::Ordering;
@@ -89,7 +89,7 @@ macro_rules! hashset {
8989
/// [1]: https://en.wikipedia.org/wiki/Hash_array_mapped_trie
9090
/// [std::cmp::Eq]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
9191
/// [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
9393
pub struct HashSet<A, S = RandomState> {
9494
hasher: Ref<S>,
9595
root: Ref<Node<Value<A>>>,

0 commit comments

Comments
 (0)