diff options
| author | Aaron Power <theaaronepower@gmail.com> | 2019-03-31 16:54:05 +0200 |
|---|---|---|
| committer | Aaron Power <theaaronepower@gmail.com> | 2019-03-31 16:54:05 +0200 |
| commit | c056a79f354b9b85cfeb9a6d32632edea4719263 (patch) | |
| tree | 635cfd5a0ec68b055d68bb5908612c653565f78b /src/libstd | |
| parent | cee58fdc12bea8cc373366bd84fc786277729b1c (diff) | |
| download | rust-c056a79f354b9b85cfeb9a6d32632edea4719263.tar.gz rust-c056a79f354b9b85cfeb9a6d32632edea4719263.zip | |
Remove #[doc(hidden)] from Error::type_id
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/error.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/error.rs b/src/libstd/error.rs index 3eb289501cb..6c80a23e2e0 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::<Self>() |
