Skip to content

Commit 70ce4b1

Browse files
author
Christian
committed
Wrapped a line such that it does not exceed 100 characters.
1 parent d7fcd21 commit 70ce4b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/convert.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,8 @@ pub trait Into<T>: Sized {
291291
/// When constructing a function that is capable of failing, the return type
292292
/// will generally be of the form `Result<T, E>`.
293293
/// The `From` trait simplifies error handling by allowing a function to return a single error type
294-
/// that encapsulate multiple error types. See the "Examples" section and [the book][book] for more details.
294+
/// that encapsulate multiple error types. See the "Examples" section
295+
/// and [the book][book] for more details.
295296
///
296297
/// **Note: This trait must not fail**. If the conversion can fail, use [`TryFrom`].
297298
///

0 commit comments

Comments
 (0)