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

Commit

Permalink
Use doc(no_inline) on unnamed prelude exports (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored and yoshuawuyts committed Oct 10, 2019
1 parent 796f8b9 commit aa7cc5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ pub mod time;
/// use runtime::prelude::*;
/// ```
pub mod prelude {
#[doc(inline)]
#[doc(no_inline)]
pub use super::time::AsyncReadExt as _;
#[doc(inline)]
#[doc(no_inline)]
pub use super::time::FutureExt as _;
#[doc(inline)]
#[doc(no_inline)]
pub use super::time::StreamExt as _;
}

Expand Down

0 comments on commit aa7cc5f

Please sign in to comment.