remove outdated references

This commit is contained in:
Jane Lusby 2022-06-13 14:15:05 -07:00
parent 03999c2394
commit fb2d2e53fd

View File

@ -298,14 +298,13 @@ fn cause(&self) -> Option<&dyn Error> {
/// Provides type based access to context intended for error reports. /// Provides type based access to context intended for error reports.
/// ///
/// Used in conjunction with [`context`] and [`context_ref`] to extract /// Used in conjunction with [`provide_value`] and [`provide_ref`] to extract
/// references to member variables from `dyn Error` trait objects. /// references to member variables from `dyn Error` trait objects.
/// ///
/// # Example /// # Example
/// ///
/// ```rust /// ```rust
/// #![feature(provide_any)] /// #![feature(provide_any)]
/// #![feature(error_in_core)]
/// use core::fmt; /// use core::fmt;
/// use core::any::Demand; /// use core::any::Demand;
/// ///