From fb2d2e53fde0c74029aad4c10750fdb07a973263 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Mon, 13 Jun 2022 14:15:05 -0700 Subject: [PATCH] remove outdated references --- library/std/src/error.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/std/src/error.rs b/library/std/src/error.rs index 3d7d8191770..e5cc008096d 100644 --- a/library/std/src/error.rs +++ b/library/std/src/error.rs @@ -298,14 +298,13 @@ fn cause(&self) -> Option<&dyn Error> { /// 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. /// /// # Example /// /// ```rust /// #![feature(provide_any)] - /// #![feature(error_in_core)] /// use core::fmt; /// use core::any::Demand; ///