mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
12 lines
370 B
Rust
12 lines
370 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.
|
|
///
|
|
/// <blockquote>bla AvisynthPluginInit3 bla</blockquote>
|
|
///
|
|
/// <q>bla AvisynthPluginInit3 bla</q>
|
|
pub struct Foo;
|