Update library/std/src/collections/hash/map.rs

Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
This commit is contained in:
Tom Kaitchuck 2020-11-12 20:14:57 -08:00 committed by GitHub
parent 5b3d98d9f8
commit 4e5848349c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ use crate::sys;
/// 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