about summary refs log tree commit diff
path: root/compiler/rustc_passes/src
diff options
context:
space:
mode:
authorGoldstein <root@goldstein.rs>2024-08-18 17:15:29 +0300
committerGoldstein <root@goldstein.rs>2024-08-18 20:32:04 +0300
commitdf6cb954bb50fa8567f7198c02db90edda3cd3e4 (patch)
treeca6d0a37479c58560e37f89d21c619c5451d43ef /compiler/rustc_passes/src
parent3a9bf4551374893fdc522572ee569028186e22cc (diff)
downloadrust-df6cb954bb50fa8567f7198c02db90edda3cd3e4.tar.gz
rust-df6cb954bb50fa8567f7198c02db90edda3cd3e4.zip
Fix wording of misapplied `must_not_suspend` error
Diffstat (limited to 'compiler/rustc_passes/src')
-rw-r--r--compiler/rustc_passes/src/check_attr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_passes/src/check_attr.rs b/compiler/rustc_passes/src/check_attr.rs
index 60c8c1e7a00..e3c2999142f 100644
--- a/compiler/rustc_passes/src/check_attr.rs
+++ b/compiler/rustc_passes/src/check_attr.rs
@@ -1363,7 +1363,7 @@ impl<'tcx> CheckAttrVisitor<'tcx> {
         }
     }
 
-    /// Checks if `#[must_not_suspend]` is applied to a function.
+    /// Checks if `#[must_not_suspend]` is applied to a struct, enum, union, or trait.
     fn check_must_not_suspend(&self, attr: &Attribute, span: Span, target: Target) {
         match target {
             Target::Struct | Target::Enum | Target::Union | Target::Trait => {}