diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2023-06-01 11:09:45 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-01 11:09:45 +0530 |
| commit | 129c5597644b27def33d650f8d8004c90698d34c (patch) | |
| tree | 54cdd0b8e296213894872257653d4b5e6a923e39 /library | |
| parent | fe123231ad0efcf16f183975b9b28304d63363e7 (diff) | |
| parent | 2eeb7693c5cb2e324458094bc8e923489a318953 (diff) | |
| download | rust-129c5597644b27def33d650f8d8004c90698d34c.tar.gz rust-129c5597644b27def33d650f8d8004c90698d34c.zip | |
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.
Diffstat (limited to 'library')
| -rw-r--r-- | library/core/src/convert/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/core/src/convert/mod.rs b/library/core/src/convert/mod.rs index 38a6d1ccdb5..799085e9a83 100644 --- a/library/core/src/convert/mod.rs +++ b/library/core/src/convert/mod.rs @@ -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; |
