Skip to content

Commit

Permalink
Remove #[doc(hidden)] from Error::type_id
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Power committed Mar 31, 2019
1 parent cee58fd commit c056a79
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/libstd/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::<Self>()
Expand Down

0 comments on commit c056a79

Please sign in to comment.