mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
37 lines
1,014 B
Text
37 lines
1,014 B
Text
|
error: item in documentation is missing backticks
|
||
|
--> $DIR/doc_markdown.rs:6:5
|
||
|
|
|
||
|
LL | /// OAuth and LaTeX are inside Clippy's default list.
|
||
|
| ^^^^^
|
||
|
|
|
||
|
= note: `-D clippy::doc-markdown` implied by `-D warnings`
|
||
|
help: try
|
||
|
|
|
||
|
LL | /// `OAuth` and LaTeX are inside Clippy's default list.
|
||
|
| ~~~~~~~
|
||
|
|
||
|
error: item in documentation is missing backticks
|
||
|
--> $DIR/doc_markdown.rs:6:15
|
||
|
|
|
||
|
LL | /// OAuth and LaTeX are inside Clippy's default list.
|
||
|
| ^^^^^
|
||
|
|
|
||
|
help: try
|
||
|
|
|
||
|
LL | /// OAuth and `LaTeX` are inside Clippy's default list.
|
||
|
| ~~~~~~~
|
||
|
|
||
|
error: item in documentation is missing backticks
|
||
|
--> $DIR/doc_markdown.rs:9:5
|
||
|
|
|
||
|
LL | /// TestItemThingyOfCoolness might sound cool but is not on the list and should be linted.
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
help: try
|
||
|
|
|
||
|
LL | /// `TestItemThingyOfCoolness` might sound cool but is not on the list and should be linted.
|
||
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|