Remove `#[doc(hidden)]` from trait impl items (#2365)

See https://github.com/rust-lang/rust/pull/96008
This commit is contained in:
messense 2022-05-11 02:26:53 +08:00 committed by GitHub
parent f5357f9395
commit 76c09ac3ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -13,7 +13,6 @@ macro_rules! private_decl {
macro_rules! private_impl {
() => {
#[doc(hidden)]
fn __private__(&self) -> crate::internal_tricks::PrivateMarker {
crate::internal_tricks::PrivateMarker
}