From 8094934b9a7e882e40ea1de03a73d8c1053bed28 Mon Sep 17 00:00:00 2001 From: winningMove Date: Sat, 22 Nov 2025 10:37:31 +0100 Subject: [PATCH] Fix typo in HashMap performance comment --- library/std/src/collections/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/collections/mod.rs b/library/std/src/collections/mod.rs index 6104a02c739b5..460deb490ef0b 100644 --- a/library/std/src/collections/mod.rs +++ b/library/std/src/collections/mod.rs @@ -104,7 +104,7 @@ //! unlikely, for [`HashMap`] to experience significantly worse performance than //! the expected cost. This is due to the probabilistic nature of hashing - i.e. //! it is possible to generate a duplicate hash given some input key that will -//! requires extra computation to correct. +//! require extra computation to correct. //! //! ## Cost of Collection Operations //!