From 70ce4b168d697a55a5aaaebf39e4bda5c4b9db58 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 21 Mar 2019 19:36:51 +0100 Subject: [PATCH] Wrapped a line such that it does not exceed 100 characters. --- src/libcore/convert.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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`]. ///