Skip to content

Commit 91ef663

Browse files
authored
Rollup merge of #71412 - dtolnay:uselessdoc, r=Manishearth
Clarify unused_doc_comments note on macro invocations The previous error message used to say: <pre> /// doc ^^^^^^^ rustdoc does not generate documentation for <b>macros</b> </pre> Obviously we do generate documentation for macros, such as https://docs.rs/bitflags/1.2.1/bitflags/macro.bitflags.html. It's only macro invocations that don't get their own docs. This PR updates the message to say "rustdoc does not generate documentation for <b>macro invocations</b>". I observe that prior to #69084 this used to say "rustdoc does not generate documentation for **macro expansions**", as implemented originally in #57882. I don't have a preference between those but I made the commit before looking up the history. r? @Manishearth attn: @yaahc @euclio
2 parents e7c5334 + 3a8097f commit 91ef663

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/librustc_lint/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ pub trait LintContext: Sized {
566566
stability::deprecation_suggestion(&mut db, suggestion, span)
567567
}
568568
BuiltinLintDiagnostics::UnusedDocComment(span) => {
569-
db.span_label(span, "rustdoc does not generate documentation for macros");
569+
db.span_label(span, "rustdoc does not generate documentation for macro invocations");
570570
db.help("to document an item produced by a macro, \
571571
the macro must produce the documentation as part of its expansion");
572572
}

src/test/ui/useless-comment.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error: unused doc comment
22
--> $DIR/useless-comment.rs:9:1
33
|
44
LL | /// foo
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macros
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
66
|
77
note: the lint level is defined here
88
--> $DIR/useless-comment.rs:3:9
@@ -15,7 +15,7 @@ error: unused doc comment
1515
--> $DIR/useless-comment.rs:32:5
1616
|
1717
LL | /// bar
18-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macros
18+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
1919
|
2020
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
2121

0 commit comments

Comments
 (0)