mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 00:17:13 +00:00
15 lines
575 B
Text
15 lines
575 B
Text
error: item in documentation is missing backticks
|
|
--> tests/ui/doc/issue_9473.rs:8:58
|
|
|
|
|
LL | /// Blah blah blah <code>[FooBar]<[FooBar]></code>[FooBar].
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::doc-markdown` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::doc_markdown)]`
|
|
help: try
|
|
|
|
|
LL | /// Blah blah blah <code>[FooBar]<[FooBar]></code>[`FooBar`].
|
|
| ~~~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|