]> git.lizzy.rs Git - rust.git/commitdiff
Update library/std/src/collections/hash/map.rs
authorTom Kaitchuck <tkaitchuck@users.noreply.github.com>
Fri, 13 Nov 2020 04:14:57 +0000 (20:14 -0800)
committerGitHub <noreply@github.com>
Fri, 13 Nov 2020 04:14:57 +0000 (20:14 -0800)
Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
library/std/src/collections/hash/map.rs

index 03d8b11a51aef20a3cccc4f3be6c5dc54c6a4927..c6a68a4467193ddee6e4377ad93dd07c66795df0 100644 (file)
@@ -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