Skip to content

Commit

Permalink
Unrolled build for rust-lang#117073
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#117073 - yotamofek:fix-coroutines-feature-rename-suggestion, r=lqd

Fix suggestion for renamed coroutines feature

This fixes a small typo from rust-lang#116958
  • Loading branch information
rust-timer committed Oct 23, 2023
2 parents 858a42b + a6c2481 commit 53dc576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_feature/src/removed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ declare_features! (
/// Allows generators to be cloned.
(removed, generator_clone, "1.65.0", Some(95360), None, Some("renamed to `coroutine_clone`")),
/// Allows defining generators.
(removed, generators, "1.21.0", Some(43122), None, Some("renamed to `coroutine`")),
(removed, generators, "1.21.0", Some(43122), None, Some("renamed to `coroutines`")),
/// Allows `impl Trait` in bindings (`let`, `const`, `static`).
(removed, impl_trait_in_bindings, "1.55.0", Some(63065), None,
Some("the implementation was not maintainable, the feature may get reintroduced once the current refactorings are done")),
Expand Down

0 comments on commit 53dc576

Please sign in to comment.