diff options
| author | Christian <chris_veenman@hotmail.com> | 2019-03-21 19:36:51 +0100 |
|---|---|---|
| committer | Christian <chris_veenman@hotmail.com> | 2019-03-21 19:36:51 +0100 |
| commit | 70ce4b168d697a55a5aaaebf39e4bda5c4b9db58 (patch) | |
| tree | d1bf86fbb53967de00f18cb088b6b743a84f7535 | |
| parent | d7fcd219c5cc79af1d8f24d7f41d12466d349bdd (diff) | |
| download | rust-70ce4b168d697a55a5aaaebf39e4bda5c4b9db58.tar.gz rust-70ce4b168d697a55a5aaaebf39e4bda5c4b9db58.zip | |
Wrapped a line such that it does not exceed 100 characters.
| -rw-r--r-- | src/libcore/convert.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs index 4402dc2fa41..9f72d02d865 100644 --- a/src/libcore/convert.rs +++ b/src/libcore/convert.rs @@ -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`]. /// |
