Skip to content

Commit 8cb647f

Browse files
committed
Auto merge of #536 - overlookmotel:fix-docs, r=Amanieu
Fix link to std traits in docs Link to `Hash` in docs for `HashTable` was pointing to `Hash` derive macro, rather than `Hash` trait.
2 parents 9f24e48 + 932714b commit 8cb647f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/table.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ use crate::{
4242
///
4343
/// [`HashMap`]: super::HashMap
4444
/// [`HashSet`]: super::HashSet
45+
/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
46+
/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
4547
pub struct HashTable<T, A = Global>
4648
where
4749
A: Allocator,

0 commit comments

Comments
 (0)