Skip to content

Commit 7e56983

Browse files
committed
Remove mention of ahash in docs
1 parent a1a76e1 commit 7e56983

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/map.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,6 @@ impl<K, V, S> IndexMap<K, V, S> {
179179
///
180180
/// This function is `const`, so it
181181
/// can be called in `static` contexts.
182-
/// If you need `hash_builder` that can be made in the static context,
183-
/// consider [`ahash`](https://docs.rs/ahash/0.7.4/ahash/struct.RandomState.html#method.with_seeds).
184182
pub const fn with_hasher(hash_builder: S) -> Self {
185183
IndexMap {
186184
core: IndexMapCore::new(),

src/set.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,6 @@ impl<T, S> IndexSet<T, S> {
159159
///
160160
/// This function is `const`, so it
161161
/// can be called in `static` contexts.
162-
/// If you need `hash_builder` that can be made in the static context,
163-
/// consider [`ahash`](https://docs.rs/ahash/0.7.4/ahash/struct.RandomState.html#method.with_seeds).
164162
pub const fn with_hasher(hash_builder: S) -> Self {
165163
IndexSet {
166164
map: IndexMap::with_hasher(hash_builder),

0 commit comments

Comments
 (0)