diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs index 4402dc2fa415..9f72d02d865d 100644 --- a/src/libcore/convert.rs +++ b/src/libcore/convert.rs @@ -291,7 +291,8 @@ pub trait Into: Sized { /// When constructing a function that is capable of failing, the return type /// will generally be of the form `Result`. /// The `From` trait simplifies error handling by allowing a function to return a single error type -/// that encapsulate multiple error types. See the "Examples" section and [the book][book] for more details. +/// that encapsulate multiple error types. See the "Examples" section +/// and [the book][book] for more details. /// /// **Note: This trait must not fail**. If the conversion can fail, use [`TryFrom`]. ///