Fix typo by removing extra 'to'

This commit is contained in:
Muhtasim-Rasheed
2026-04-24 18:17:26 +06:00
parent cf79d034aa
commit 52b93e04f8
+1 -1
View File
@@ -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<T>`][`From`] or