Skip to content

Commit

Permalink
Rollup merge of rust-lang#112141 - anna-singleton:issue-111655-fix, r…
Browse files Browse the repository at this point in the history
…=thomcc

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

remove the text stating that `?` uses `Into::into` and add text stating it uses `From::from` instead. This closes rust-lang#111655.
  • Loading branch information
matthiaskrgr authored Jun 1, 2023
2 parents 0f3e8b6 + 2eeb769 commit 75412ce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions library/core/src/convert/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 75412ce

Please sign in to comment.