From 4e5848349ce6f8b79dc9b2eba57e833431761bc7 Mon Sep 17 00:00:00 2001 From: Tom Kaitchuck Date: Thu, 12 Nov 2020 20:14:57 -0800 Subject: [PATCH] Update library/std/src/collections/hash/map.rs Co-authored-by: Mara Bos --- library/std/src/collections/hash/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/collections/hash/map.rs b/library/std/src/collections/hash/map.rs index 03d8b11a51a..c6a68a44671 100644 --- a/library/std/src/collections/hash/map.rs +++ b/library/std/src/collections/hash/map.rs @@ -34,7 +34,7 @@ /// attacks such as HashDoS. /// /// The hashing algorithm can be replaced on a per-`HashMap` basis using the -/// [`default`], [`with_hasher`], and [`with_capacity_and_hasher`] methods. +/// [`default`], [`with_hasher`], and [`with_capacity_and_hasher`] methods. /// There are many alternative [hashing algorithms available on crates.io]. /// /// It is required that the keys implement the [`Eq`] and [`Hash`] traits, although