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

Use doc(no_inline) on unnamed prelude exports #118

Merged
merged 1 commit into from
Oct 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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