Skip to content

Commit 11b4a93

Browse files
committed
Remove doc(hidden) attribute that is being phased out
warning: `#[doc(hidden)]` is ignored on trait impl items --> src/parse.rs:1220:5 | 1220 | #[doc(hidden)] | ^^^^^^^^^^^^^^ help: remove this attribute | = note: `#[warn(unused_attributes)]` on by default = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: whether the impl item is `doc(hidden)` or not entirely depends on the corresponding trait item warning: `#[doc(hidden)]` is ignored on trait impl items --> src/parse.rs:1236:5 | 1236 | #[doc(hidden)] | ^^^^^^^^^^^^^^ help: remove this attribute | = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: whether the impl item is `doc(hidden)` or not entirely depends on the corresponding trait item
1 parent 2e505a8 commit 11b4a93

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/parse.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,6 @@ where
12171217
}
12181218
}
12191219

1220-
#[doc(hidden)]
12211220
#[cfg(any(feature = "full", feature = "derive"))]
12221221
fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> {
12231222
let buf = TokenBuffer::new2(tokens);
@@ -1233,7 +1232,6 @@ where
12331232
}
12341233
}
12351234

1236-
#[doc(hidden)]
12371235
#[cfg(any(feature = "full", feature = "derive"))]
12381236
fn __parse_stream(self, input: ParseStream) -> Result<Self::Output> {
12391237
self(input)

0 commit comments

Comments
 (0)