From 44751e99a6eb27714b2bc226ffaeb8cc45cbb1e2 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Fri, 17 Apr 2026 20:20:55 -0700 Subject: [PATCH] lib.rs: fix broken link to FxHashMap The second mention linked to the crate, the first one previously didn't --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 21ad51f..0438a3f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! ## `rustc-hash` //! //! We expose a `rustc-hash` feature, disabled by default. This feature switches the -//! [`std::collections::HashMap`] for [`rustc_hash::FxHashMap`] to improve the performance of said +//! [`std::collections::HashMap`] for [`rustc_hash::FxHashMap`][2] to improve the performance of said //! `HashMap` in specific situations. //! //! `cargo-semver-checks` for example, saw a [-3% improvement][1] when benchmarking using the