mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-25 06:00:35 +00:00
8 lines
254 B
Rust
8 lines
254 B
Rust
|
#![warn(clippy::too_long_first_doc_paragraph)]
|
||
|
|
||
|
/// A very short summary.
|
||
|
/// A much longer explanation that goes into a lot more detail about
|
||
|
/// how the thing works, possibly with doclinks and so one,
|
||
|
/// and probably spanning a many rows.
|
||
|
struct Foo;
|