From 324d3f91e39eb3fd664a0e701f4887bd4b7ddbbc Mon Sep 17 00:00:00 2001 From: Urgau Date: Wed, 17 Jul 2024 12:50:32 +0200 Subject: [PATCH] Fix intra-doc link for FxSeededState --- src/seeded_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/seeded_state.rs b/src/seeded_state.rs index 2c8215f..96b2a43 100644 --- a/src/seeded_state.rs +++ b/src/seeded_state.rs @@ -8,7 +8,7 @@ pub type FxHashMapSeed = std::collections::HashMap; #[cfg(feature = "std")] pub type FxHashSetSeed = std::collections::HashSet; -/// [`FxSetState`] is an alternative state for `HashMap` types, allowing to use [`FxHasher`] with a set seed. +/// [`FxSeededState`] is an alternative state for `HashMap` types, allowing to use [`FxHasher`] with a set seed. /// /// ``` /// # use std::collections::HashMap;