Skip to content

Commit bfacfe2

Browse files
committed
expand: fix minor diagnostics bug
The error mentions `///`, when it's actually `//!`: error[E0658]: attributes on expressions are experimental --> test.rs:4:9 | 4 | //! wah | ^^^^^^^ | = note: see issue rust-lang#15701 <rust-lang#15701> for more information = help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable = help: `///` is for documentation comments. For a plain comment, use `//`.
1 parent c649c6c commit bfacfe2

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

compiler/rustc_expand/src/config.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,11 @@ impl<'a> StripUnconfigured<'a> {
387387
);
388388

389389
if attr.is_doc_comment() {
390-
err.help("`///` is for documentation comments. For a plain comment, use `//`.");
390+
err.help(if attr.style == AttrStyle::Outer {
391+
"`///` is used for outer documentation comments; for a plain comment, use `//`"
392+
} else {
393+
"`//!` is used for inner documentation comments; for a plain comment, use `//` by removing the `!` or inserting a space in between them: `// !`"
394+
});
391395
}
392396

393397
err.emit();

tests/ui/feature-gates/feature-gate-stmt_expr_attributes.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LL | /// foo
1717
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
1818
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
1919
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
20-
= help: `///` is for documentation comments. For a plain comment, use `//`.
20+
= help: `///` is used for outer documentation comments; for a plain comment, use `//`
2121

2222
error[E0658]: attributes on expressions are experimental
2323
--> $DIR/feature-gate-stmt_expr_attributes.rs:10:5
@@ -28,7 +28,7 @@ LL | //! foo
2828
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
2929
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
3030
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
31-
= help: `///` is for documentation comments. For a plain comment, use `//`.
31+
= help: `//!` is used for inner documentation comments; for a plain comment, use `//` by removing the `!` or inserting a space in between them: `// !`
3232

3333
error: aborting due to 3 previous errors
3434

tests/ui/lint/unused/unused-doc-comments-edge-cases.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ LL | /// useless doc comment
1313
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
1414
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
1515
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
16-
= help: `///` is for documentation comments. For a plain comment, use `//`.
16+
= help: `///` is used for outer documentation comments; for a plain comment, use `//`
1717

1818
error: unused doc comment
1919
--> $DIR/unused-doc-comments-edge-cases.rs:6:9

0 commit comments

Comments
 (0)