From b72bb254961aed9efb9b617b04ab01e5f6607dcc Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sat, 8 Feb 2020 20:01:08 +0100 Subject: [PATCH] Move attributes after doc comment --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8a4c33d5..132581cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -208,10 +208,10 @@ pub use ruma_api_macros::ruma_api; #[cfg(feature = "with-ruma-api-macros")] pub use ruma_api_macros::Outgoing; -#[cfg(feature = "with-ruma-api-macros")] -#[doc(hidden)] /// This module is used to support the generated code from ruma-api-macros. /// It is not considered part of ruma-api's public API. +#[cfg(feature = "with-ruma-api-macros")] +#[doc(hidden)] pub mod exports { pub use http; pub use percent_encoding;