Skip to content

Commit e463060

Browse files
include feedback from workingjubilee
- Refer to trait directly - small typo in encapsulate Co-authored-by: Jubilee <[email protected]>
1 parent fb2b918 commit e463060

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

library/core/src/convert/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,8 @@ pub trait Into<T>: Sized {
468468
///
469469
/// 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-
/// It 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)