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 //!