about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian <chris_veenman@hotmail.com>2019-03-21 19:36:51 +0100
committerChristian <chris_veenman@hotmail.com>2019-03-21 19:36:51 +0100
commit70ce4b168d697a55a5aaaebf39e4bda5c4b9db58 (patch)
treed1bf86fbb53967de00f18cb088b6b743a84f7535
parentd7fcd219c5cc79af1d8f24d7f41d12466d349bdd (diff)
downloadrust-70ce4b168d697a55a5aaaebf39e4bda5c4b9db58.tar.gz
rust-70ce4b168d697a55a5aaaebf39e4bda5c4b9db58.zip
Wrapped a line such that it does not exceed 100 characters.
-rw-r--r--src/libcore/convert.rs3
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`].
 ///