about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-10-23 16:23:54 +0200
committerGitHub <noreply@github.com>2023-10-23 16:23:54 +0200
commitf4dfd8d497c1d9f9cc692e2d744220c578fa1c74 (patch)
tree81af27d5d72142df30752ec1e18710a0e6abbbad
parent6814eb1052e712346a6bab6bb5ef63f38d298378 (diff)
parenta6c2481a3686a04a206e53b2617e51293a6f86bf (diff)
downloadrust-f4dfd8d497c1d9f9cc692e2d744220c578fa1c74.tar.gz
rust-f4dfd8d497c1d9f9cc692e2d744220c578fa1c74.zip
Rollup merge of #117073 - yotamofek:fix-coroutines-feature-rename-suggestion, r=lqd
Fix suggestion for renamed coroutines feature

This fixes a small typo from #116958
-rw-r--r--compiler/rustc_feature/src/removed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/removed.rs b/compiler/rustc_feature/src/removed.rs
index ac133f8b039..ed19274a7cc 100644
--- a/compiler/rustc_feature/src/removed.rs
+++ b/compiler/rustc_feature/src/removed.rs
@@ -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")),