diff options
| author | Yoshua Wuyts <yoshuawuyts@gmail.com> | 2020-09-15 23:12:08 +0200 |
|---|---|---|
| committer | Yoshua Wuyts <yoshuawuyts@gmail.com> | 2020-09-15 23:12:08 +0200 |
| commit | 143e4e975b1465f0380985d3e5597c22a6c5ee58 (patch) | |
| tree | cea8ff4ff3515184306753938955002ad0489e44 /library/std/src | |
| parent | a874956d940ecb3ed524b6176a171219ac4787ea (diff) | |
| download | rust-143e4e975b1465f0380985d3e5597c22a6c5ee58.tar.gz rust-143e4e975b1465f0380985d3e5597c22a6c5ee58.zip | |
Fix stabilization marker for future_readiness_fns
Moved it from 1.47.0 -> 1.48.0, which is the correct release for this to stabilize in
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/future.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/future.rs b/library/std/src/future.rs index 5ff74e55754..9d9c36e9afb 100644 --- a/library/std/src/future.rs +++ b/library/std/src/future.rs @@ -9,7 +9,7 @@ pub use core::future::Future; pub use core::future::{from_generator, get_context, ResumeTy}; #[doc(inline)] -#[stable(feature = "future_readiness_fns", since = "1.47.0")] +#[stable(feature = "future_readiness_fns", since = "1.48.0")] pub use core::future::{pending, ready, Pending, Ready}; #[doc(inline)] |
