mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
18 lines
431 B
Text
18 lines
431 B
Text
error: item in documentation is missing backticks
|
|
--> tests/ui/doc/doc_markdown-issue_13097.rs:7:9
|
|
|
|
|
LL | /// HumaNified
|
|
| ^^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> tests/ui/doc/doc_markdown-issue_13097.rs:4:9
|
|
|
|
|
LL | #![deny(clippy::doc_markdown)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
help: try
|
|
|
|
|
LL | /// `HumaNified`
|
|
| ~~~~~~~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|