File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ mod wake;
1111pub use self :: wake:: { Context , RawWaker , RawWakerVTable , Waker } ;
1212
1313mod ready;
14- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
14+ #[ stable ( feature = "ready_macro" , since = "1.64.0 " ) ]
1515pub use ready:: ready;
1616#[ unstable( feature = "poll_ready" , issue = "89780" ) ]
1717pub use ready:: Ready ;
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ use core::task::Poll;
1313/// # Examples
1414///
1515/// ```
16- /// #![feature(ready_macro)]
17- ///
1816/// use std::task::{ready, Context, Poll};
1917/// use std::future::{self, Future};
2018/// use std::pin::Pin;
@@ -34,7 +32,6 @@ use core::task::Poll;
3432/// The `ready!` call expands to:
3533///
3634/// ```
37- /// # #![feature(ready_macro)]
3835/// # use std::task::{Context, Poll};
3936/// # use std::future::{self, Future};
4037/// # use std::pin::Pin;
@@ -53,7 +50,7 @@ use core::task::Poll;
5350/// # Poll::Ready(())
5451/// # }
5552/// ```
56- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
53+ #[ stable ( feature = "ready_macro" , since = "1.64.0 " ) ]
5754#[ rustc_macro_transparency = "semitransparent" ]
5855pub macro ready ( $e: expr) {
5956 match $e {
You can’t perform that action at this time.
0 commit comments