Update stable version of ready!() macro.

This commit is contained in:
Mara Bos 2021-07-28 16:54:53 +02:00
parent 8c91805fd1
commit 18cc06c848
2 changed files with 2 additions and 2 deletions

View File

@ -11,5 +11,5 @@ mod wake;
pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
mod ready;
#[stable(feature = "ready_macro", since = "1.55.0")]
#[stable(feature = "ready_macro", since = "1.56.0")]
pub use ready::ready;

View File

@ -45,7 +45,7 @@
/// # Poll::Ready(())
/// # }
/// ```
#[stable(feature = "ready_macro", since = "1.55.0")]
#[stable(feature = "ready_macro", since = "1.56.0")]
#[rustc_macro_transparency = "semitransparent"]
pub macro ready($e:expr) {
match $e {