From 78f78ab6a749cb7718a6aef9d409745e78f0ad08 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 9 Mar 2021 10:42:34 -0800 Subject: [PATCH] Remove doc cfg attribute on impl on private type --- src/item.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/item.rs b/src/item.rs index 5cf501b92a..7c99e6ec98 100644 --- a/src/item.rs +++ b/src/item.rs @@ -1168,7 +1168,6 @@ pub mod parsing { semi_token: Token![;], } - #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] impl Parse for FlexibleItemType { fn parse(input: ParseStream) -> Result { let vis: Visibility = input.parse()?;