From 7ff0fdb49cbe6df6bf8885f7dc8741b9836dfb45 Mon Sep 17 00:00:00 2001
From: Alex Crichton <alex@alexcrichton.com>
Date: Fri, 11 Sep 2015 12:54:56 -0700
Subject: [PATCH] Tweak macros module

---
 src/macros.rs | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/macros.rs b/src/macros.rs
index 3b096a53..1089a856 100644
--- a/src/macros.rs
+++ b/src/macros.rs
@@ -1,8 +1,8 @@
 //! A macro for defining #[cfg] if-else statements.
 //!
-//! The macro provided by this crate, `cfg_if`, is similar to the `if/elif` C
-//! preprocessor macro by allowing definition of a cascade of `#[cfg]` cases,
-//! emitting the implementation which matches first.
+//! This is similar to the `if/elif` C preprocessor macro by allowing definition
+//! of a cascade of `#[cfg]` cases, emitting the implementation which matches
+//! first.
 //!
 //! This allows you to conveniently provide a long list #[cfg]'d blocks of code
 //! without having to rewrite each clause multiple times.
@@ -21,7 +21,6 @@ macro_rules! cfg_if {
     }
 }
 
-#[doc(hidden)]
 macro_rules! __cfg_if_items {
     (($($not:meta,)*) ; ) => {};
     (($($not:meta,)*) ; ( ($($m:meta),*) ($($it:item)*) ), $($rest:tt)*) => {
@@ -30,7 +29,6 @@ macro_rules! __cfg_if_items {
     }
 }
 
-#[doc(hidden)]
 macro_rules! __cfg_if_apply {
     ($m:meta, $($it:item)*) => {
         $(#[$m] $it)*
-- 
GitLab