Skip to content

Commit b8f8638

Browse files
authored
Rollup merge of #67181 - TheSamsa:update-hashmap-doc, r=Dylan-DPC
Update hashmap doc Update hint to the used algorithms. Skimmed over the longer description but could not find another mentioning of the old algorithms. Closes #67093
2 parents 729c31b + a678628 commit b8f8638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/collections/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ mod hash;
433433

434434
#[stable(feature = "rust1", since = "1.0.0")]
435435
pub mod hash_map {
436-
//! A hash map implemented with linear probing and Robin Hood bucket stealing.
436+
//! A hash map implemented with quadratic probing and SIMD lookup.
437437
#[stable(feature = "rust1", since = "1.0.0")]
438438
pub use super::hash::map::*;
439439
}

0 commit comments

Comments
 (0)