Skip to content

Commit

Permalink
Broken link fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bodil committed May 18, 2019
1 parent 60de96d commit 6ddf406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hash/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//! [1]: https://en.wikipedia.org/wiki/Hash_array_mapped_trie
//! [std::cmp::Eq]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
//! [std::hash::Hash]: https://doc.rust-lang.org/std/hash/trait.Hash.html
//! [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.h
//! [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
use std::borrow::Borrow;
use std::cmp::Ordering;
Expand Down Expand Up @@ -89,7 +89,7 @@ macro_rules! hashset {
/// [1]: https://en.wikipedia.org/wiki/Hash_array_mapped_trie
/// [std::cmp::Eq]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
/// [std::hash::Hash]: https://doc.rust-lang.org/std/hash/trait.Hash.html
/// [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.h
/// [std::collections::hash_map::RandomState]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
pub struct HashSet<A, S = RandomState> {
hasher: Ref<S>,
root: Ref<Node<Value<A>>>,
Expand Down

0 comments on commit 6ddf406

Please sign in to comment.