about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTom Kaitchuck <tkaitchuck@users.noreply.github.com>2020-11-12 20:14:57 -0800
committerGitHub <noreply@github.com>2020-11-12 20:14:57 -0800
commit4e5848349ce6f8b79dc9b2eba57e833431761bc7 (patch)
tree074186882eb5b443ef95f69cefeebe62b7377d94
parent5b3d98d9f8d50a4bb3adf071dc6592cf458afbf1 (diff)
downloadrust-4e5848349ce6f8b79dc9b2eba57e833431761bc7.tar.gz
rust-4e5848349ce6f8b79dc9b2eba57e833431761bc7.zip
Update library/std/src/collections/hash/map.rs
Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
-rw-r--r--library/std/src/collections/hash/map.rs2
1 files changed, 1 insertions, 1 deletions
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 @@ 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