From c056a79f354b9b85cfeb9a6d32632edea4719263 Mon Sep 17 00:00:00 2001 From: Aaron Power Date: Sun, 31 Mar 2019 16:54:05 +0200 Subject: [PATCH] Remove #[doc(hidden)] from Error::type_id --- src/libstd/error.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libstd/error.rs b/src/libstd/error.rs index 3eb289501cb0f..6c80a23e2e04f 100644 --- a/src/libstd/error.rs +++ b/src/libstd/error.rs @@ -197,7 +197,6 @@ pub trait Error: Debug + Display { fn source(&self) -> Option<&(dyn Error + 'static)> { None } /// Gets the `TypeId` of `self` - #[doc(hidden)] #[stable(feature = "error_type_id", since = "1.34.0")] fn type_id(&self) -> TypeId where Self: 'static { TypeId::of::()