mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-28 07:30:57 +00:00
13 lines
327 B
Rust
13 lines
327 B
Rust
// This test checks that words starting with capital letters and ending with "ified" don't
|
|
// trigger the lint.
|
|
|
|
#![deny(clippy::doc_markdown)]
|
|
|
|
pub enum OutputFormat {
|
|
/// HumaNified
|
|
//~^ ERROR: item in documentation is missing backticks
|
|
Plain,
|
|
// Should not warn!
|
|
/// JSONified console output
|
|
Json,
|
|
}
|