We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a63150b commit 9fcec02Copy full SHA for 9fcec02
1 file changed
compiler/rustc_lint_defs/src/builtin.rs
@@ -1032,8 +1032,8 @@ declare_lint! {
1032
/// ```rust
1033
/// #[warn(unused_macro_rules)]
1034
/// macro_rules! unused_empty {
1035
- /// (hello) => { println!("Hello, world!") }; // This rule is unused
1036
- /// () => { println!("empty") }; // This rule is used
+ /// (hello) => { println!("Hello, world!") }; // This rule is used
+ /// () => { println!("empty") }; // This rule is unused
1037
/// }
1038
///
1039
/// fn main() {
0 commit comments