Skip to content

Commit 18cc06c

Browse files
committed
Update stable version of ready!() macro.
1 parent 8c91805 commit 18cc06c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/task/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ mod wake;
1111
pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
1212

1313
mod ready;
14-
#[stable(feature = "ready_macro", since = "1.55.0")]
14+
#[stable(feature = "ready_macro", since = "1.56.0")]
1515
pub use ready::ready;

library/core/src/task/ready.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/// # Poll::Ready(())
4646
/// # }
4747
/// ```
48-
#[stable(feature = "ready_macro", since = "1.55.0")]
48+
#[stable(feature = "ready_macro", since = "1.56.0")]
4949
#[rustc_macro_transparency = "semitransparent"]
5050
pub macro ready($e:expr) {
5151
match $e {

0 commit comments

Comments
 (0)