Skip to content

Commit 0f87cc0

Browse files
authored
Unrolled build for rust-lang#121939
Rollup merge of rust-lang#121939 - jonaspleyer:patch-typo-core-From-descr, r=workingjubilee Small enhancement to description of From trait - fix small typo - avoid repetition of formulations
2 parents d18480b + e463060 commit 0f87cc0

File tree

1 file changed

+3
-3
lines changed
  • library/core/src/convert

1 file changed

+3
-3
lines changed

library/core/src/convert/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -466,10 +466,10 @@ pub trait Into<T>: Sized {
466466
/// Prefer using [`Into`] over using `From` when specifying trait bounds on a generic function.
467467
/// This way, types that directly implement [`Into`] can be used as arguments as well.
468468
///
469-
/// The `From` is also very useful when performing error handling. When constructing a function
469+
/// The `From` trait is also very useful when performing error handling. When constructing a function
470470
/// that is capable of failing, the return type will generally be of the form `Result<T, E>`.
471-
/// The `From` trait simplifies error handling by allowing a function to return a single error type
472-
/// that encapsulate multiple error types. See the "Examples" section and [the book][book] for more
471+
/// `From` simplifies error handling by allowing a function to return a single error type
472+
/// that encapsulates multiple error types. See the "Examples" section and [the book][book] for more
473473
/// details.
474474
///
475475
/// **Note: This trait must not fail**. The `From` trait is intended for perfect conversions.

0 commit comments

Comments
 (0)