From 1911d896628ca9e0917011ffb8179be9f6737721 Mon Sep 17 00:00:00 2001 From: Joshua Black Date: Sun, 8 Sep 2024 21:05:22 -0500 Subject: [PATCH] Spelling error in lib.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7b88324..96ce9a4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -34,7 +34,7 @@ map.insert(12, 34); The above requires a source of randomness to generate keys for the hashmap. By default this obtained from the OS. It is also possible to have randomness supplied via the `compile-time-rng` flag, or manually. -### If randomess is not available +### If randomness is not available [AHasher::default()] can be used to hash using fixed keys. This works with [BuildHasherDefault](std::hash::BuildHasherDefault). For example: