1
Fork 0

Rollup merge of #112141 - anna-singleton:issue-111655-fix, r=thomcc

remove reference to Into in ? operator core/std docs, fix #111655

remove the text stating that `?` uses `Into::into` and add text stating it uses `From::from` instead. This closes #111655.
This commit is contained in:
Dylan DPC 2023-06-01 11:09:45 +05:30 committed by GitHub
commit 129c559764
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -495,8 +495,7 @@ pub trait Into<T>: Sized {
/// By converting underlying error types to our own custom error type that encapsulates the
/// underlying error type, we can return a single error type without losing information on the
/// underlying cause. The '?' operator automatically converts the underlying error type to our
/// custom error type by calling `Into<CliError>::into` which is automatically provided when
/// implementing `From`. The compiler then infers which implementation of `Into` should be used.
/// custom error type with `From::from`.
///
/// ```
/// use std::fs;