2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-29 00:35:31 +00:00

Corrects a cfg feature declaration in task/mod.rs

This commit is contained in:
Michael J Ward 2019-10-06 12:00:02 -05:00
parent 0d521cb77c
commit 75b6c60c67

View file

@ -25,7 +25,7 @@
#[doc(inline)] #[doc(inline)]
pub use std::task::{Context, Poll, Waker}; pub use std::task::{Context, Poll, Waker};
#[cfg(feature = "unstable")] #[cfg(any(feature = "unstable", feature = "docs"))]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))] #[cfg_attr(feature = "docs", doc(cfg(unstable)))]
#[doc(inline)] #[doc(inline)]
pub use async_macros::ready; pub use async_macros::ready;