2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 02:39:55 +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)]
pub use std::task::{Context, Poll, Waker};
#[cfg(feature = "unstable")]
#[cfg(any(feature = "unstable", feature = "docs"))]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
#[doc(inline)]
pub use async_macros::ready;