Skip to content

Commit d216c82

Browse files
authored
style: allow clippy::too_long_first_doc_paragraph (#2488)
* style: allow clippy::too_long_first_doc_paragraph * style: fmt
1 parent 66be012 commit d216c82

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@
4343
#![crate_name = "nix"]
4444
#![cfg(unix)]
4545
#![allow(non_camel_case_types)]
46+
// A clear document is a good document no matter if it has a summary in its
47+
// first paragraph or not.
48+
#![allow(clippy::too_long_first_doc_paragraph)]
4649
#![recursion_limit = "500"]
4750
#![deny(unused)]
4851
#![allow(unused_macros)]

0 commit comments

Comments
 (0)