mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
17 lines
532 B
Text
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
|
|
|