File tree 3 files changed +8
-4
lines changed
compiler/rustc_expand/src
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -387,7 +387,11 @@ impl<'a> StripUnconfigured<'a> {
387
387
) ;
388
388
389
389
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
+ } ) ;
391
395
}
392
396
393
397
err. emit ( ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ LL | /// foo
17
17
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
18
18
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
19
19
= 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 `//`
21
21
22
22
error[E0658]: attributes on expressions are experimental
23
23
--> $DIR/feature-gate-stmt_expr_attributes.rs:10:5
@@ -28,7 +28,7 @@ LL | //! foo
28
28
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
29
29
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
30
30
= 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: `// !`
32
32
33
33
error: aborting due to 3 previous errors
34
34
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ LL | /// useless doc comment
13
13
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
14
14
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
15
15
= 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 `//`
17
17
18
18
error: unused doc comment
19
19
--> $DIR/unused-doc-comments-edge-cases.rs:6:9
You can’t perform that action at this time.
0 commit comments