From 932714b61c001450d9c7809dd35914ad886c7d93 Mon Sep 17 00:00:00 2001 From: overlookmotel Date: Fri, 12 Jul 2024 11:35:03 +0100 Subject: [PATCH] Fix link to std traits in docs --- src/table.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/table.rs b/src/table.rs index 5bf86f82a..694d46416 100644 --- a/src/table.rs +++ b/src/table.rs @@ -42,6 +42,8 @@ use crate::{ /// /// [`HashMap`]: super::HashMap /// [`HashSet`]: super::HashSet +/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html +/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html pub struct HashTable where A: Allocator,