File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ mod wake;
11
11
pub use self :: wake:: { Context , RawWaker , RawWakerVTable , Waker } ;
12
12
13
13
mod ready;
14
- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
14
+ #[ stable ( feature = "ready_macro" , since = "1.64.0 " ) ]
15
15
pub use ready:: ready;
16
16
#[ unstable( feature = "poll_ready" , issue = "89780" ) ]
17
17
pub use ready:: Ready ;
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ use core::task::Poll;
13
13
/// # Examples
14
14
///
15
15
/// ```
16
- /// #![feature(ready_macro)]
17
- ///
18
16
/// use std::task::{ready, Context, Poll};
19
17
/// use std::future::{self, Future};
20
18
/// use std::pin::Pin;
@@ -34,7 +32,6 @@ use core::task::Poll;
34
32
/// The `ready!` call expands to:
35
33
///
36
34
/// ```
37
- /// # #![feature(ready_macro)]
38
35
/// # use std::task::{Context, Poll};
39
36
/// # use std::future::{self, Future};
40
37
/// # use std::pin::Pin;
@@ -53,7 +50,7 @@ use core::task::Poll;
53
50
/// # Poll::Ready(())
54
51
/// # }
55
52
/// ```
56
- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
53
+ #[ stable ( feature = "ready_macro" , since = "1.64.0 " ) ]
57
54
#[ rustc_macro_transparency = "semitransparent" ]
58
55
pub macro ready ( $e: expr) {
59
56
match $e {
You can’t perform that action at this time.
0 commit comments