about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2016-09-29 21:12:58 +0200
committerGitHub <noreply@github.com>2016-09-29 21:12:58 +0200
commitaaf32aa4fe97d3050a63c231d2cb2df14360a281 (patch)
treed0d978b34fa2bd3b93516b0b4665dc03fabe7c18 /src/libstd
parent12960aa1142215fe216ee499c1c41252720a721f (diff)
downloadrust-aaf32aa4fe97d3050a63c231d2cb2df14360a281.tar.gz
rust-aaf32aa4fe97d3050a63c231d2cb2df14360a281.zip
Mention FNV
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index 37f2d7c1e25..170a5bcd015 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -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)]`.