Rollup merge of #132778 - lolbinarycat:io-Error-into_inner-docs, r=cuviper

update io::Error::into_inner to acknowledge io::Error::other
This commit is contained in:
Jubilee 2024-11-08 20:46:13 -08:00 committed by GitHub
commit dc647392d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -818,10 +818,12 @@ impl Error {
/// Consumes the `Error`, returning its inner error (if any).
///
/// If this [`Error`] was constructed via [`new`] then this function will
/// return [`Some`], otherwise it will return [`None`].
/// If this [`Error`] was constructed via [`new`] or [`other`],
/// then this function will return [`Some`],
/// otherwise it will return [`None`].
///
/// [`new`]: Error::new
/// [`other`]: Error::other
///
/// # Examples
///