2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-09 01:37:16 +00:00
rust-clippy/tests/ui/doc_link_with_quotes.stderr

17 lines
532 B
Text

error: possible intra-doc link using quotes instead of backticks
--> $DIR/doc_link_with_quotes.rs:7:12
|
LL | /// Calls ['bar'] uselessly
| ^^^^^
|
= note: `-D clippy::doc-link-with-quotes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::doc_link_with_quotes)]`
error: possible intra-doc link using quotes instead of backticks
--> $DIR/doc_link_with_quotes.rs:14:12
|
LL | /// Calls ["bar"] uselessly
| ^^^^^
error: aborting due to 2 previous errors