From 52b93e04f8ef0323297b38ebbe4ce927e9e43185 Mon Sep 17 00:00:00 2001 From: Muhtasim-Rasheed Date: Fri, 24 Apr 2026 18:17:26 +0600 Subject: [PATCH] Fix typo by removing extra 'to' --- library/core/src/convert/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/convert/mod.rs b/library/core/src/convert/mod.rs index 4a4c7ee388f9..85d42b57dc06 100644 --- a/library/core/src/convert/mod.rs +++ b/library/core/src/convert/mod.rs @@ -11,7 +11,7 @@ //! - The [`TryFrom`] and [`TryInto`] traits behave like [`From`] and [`Into`], //! but should be implemented when the conversion can fail. //! -//! The traits in this module are often used as trait bounds for generic functions such that to +//! The traits in this module are often used as trait bounds for generic functions such that //! arguments of multiple types are supported. See the documentation of each trait for examples. //! //! As a library author, you should always prefer implementing [`From`][`From`] or