From a678628e58d06f46413e91ed699cdbc938b96cac Mon Sep 17 00:00:00 2001 From: Christoph Schmidler Date: Mon, 9 Dec 2019 20:13:42 +0100 Subject: [PATCH] Update HashMap documentation hint of the used 'quadratic probing' and 'SIMD lookup' algorithms --- src/libstd/collections/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs index 522b8b25144..e8b9e9cb1f2 100644 --- a/src/libstd/collections/mod.rs +++ b/src/libstd/collections/mod.rs @@ -433,7 +433,7 @@ #[stable(feature = "rust1", since = "1.0.0")] pub mod hash_map { - //! A hash map implemented with linear probing and Robin Hood bucket stealing. + //! A hash map implemented with quadratic probing and SIMD lookup. #[stable(feature = "rust1", since = "1.0.0")] pub use super::hash::map::*; } -- 2.44.0