]> git.lizzy.rs Git - rust.git/commitdiff
Wrapped a line such that it does not exceed 100 characters.
authorChristian <chris_veenman@hotmail.com>
Thu, 21 Mar 2019 18:36:51 +0000 (19:36 +0100)
committerChristian <chris_veenman@hotmail.com>
Thu, 21 Mar 2019 18:36:51 +0000 (19:36 +0100)
src/libcore/convert.rs

index 4402dc2fa415d9d042d8ce5c5ea39e6bb7a830a0..9f72d02d865d369c27fce1a3746c8eedfc33ff6d 100644 (file)
@@ -291,7 +291,8 @@ pub trait Into<T>: Sized {
 /// When constructing a function that is capable of failing, the return type
 /// will generally be of the form `Result<T, E>`.
 /// 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`].
 ///