Skip to content

Commit 4eaa44b

Browse files
Rollup merge of #155735 - Muhtasim-Rasheed:issue-155695-fix-typo, r=wesleywiser
Fix typo by removing extra 'to' Fixes #155695 Fix a typo in the `std::convert` module documentation by removing an extra "to" in the module-level docs.
2 parents 75234e5 + 52b93e0 commit 4eaa44b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • library/core/src/convert

library/core/src/convert/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! - The [`TryFrom`] and [`TryInto`] traits behave like [`From`] and [`Into`],
1212
//! but should be implemented when the conversion can fail.
1313
//!
14-
//! The traits in this module are often used as trait bounds for generic functions such that to
14+
//! The traits in this module are often used as trait bounds for generic functions such that
1515
//! arguments of multiple types are supported. See the documentation of each trait for examples.
1616
//!
1717
//! As a library author, you should always prefer implementing [`From<T>`][`From`] or

0 commit comments

Comments
 (0)