mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
9 lines
268 B
Rust
9 lines
268 B
Rust
|
#![warn(clippy::doc_markdown)]
|
||
|
|
||
|
// Should only warn for the first line!
|
||
|
/// `AviSynth` documentation:
|
||
|
//~^ ERROR: item in documentation is missing backticks
|
||
|
///
|
||
|
/// > AvisynthPluginInit3 may be called more than once with different IScriptEnvironments.
|
||
|
pub struct Foo;
|