]> git.lizzy.rs Git - rust.git/commitdiff
Mention FNV
authorSteven Fackler <sfackler@gmail.com>
Thu, 29 Sep 2016 19:12:58 +0000 (21:12 +0200)
committerGitHub <noreply@github.com>
Thu, 29 Sep 2016 19:12:58 +0000 (21:12 +0200)
src/libstd/collections/hash/map.rs

index 37f2d7c1e25d8d40ceaae99b8cea3edaedb099ca..170a5bcd015d0c8c13cdf54e443626cdd04ac2ee 100644 (file)
@@ -218,7 +218,7 @@ fn test_resize_policy() {
 /// The hashing algorithm can be replaced on a per-`HashMap` basis using the
 /// `HashMap::default`, `HashMap::with_hasher`, and
 /// `HashMap::with_capacity_and_hasher` methods. Many alternative algorithms
-/// are available on crates.io.
+/// are available on crates.io, such as the `fnv` crate.
 ///
 /// It is required that the keys implement the [`Eq`] and [`Hash`] traits, although
 /// this can frequently be achieved by using `#[derive(PartialEq, Eq, Hash)]`.