Skip to content
This repository was archived by the owner on Oct 30, 2019. It is now read-only.

Commit aa7cc5f

Browse files
taiki-eyoshuawuyts
authored andcommitted
Use doc(no_inline) on unnamed prelude exports (#118)
1 parent 796f8b9 commit aa7cc5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ pub mod time;
109109
/// use runtime::prelude::*;
110110
/// ```
111111
pub mod prelude {
112-
#[doc(inline)]
112+
#[doc(no_inline)]
113113
pub use super::time::AsyncReadExt as _;
114-
#[doc(inline)]
114+
#[doc(no_inline)]
115115
pub use super::time::FutureExt as _;
116-
#[doc(inline)]
116+
#[doc(no_inline)]
117117
pub use super::time::StreamExt as _;
118118
}
119119

0 commit comments

Comments
 (0)