Skip to content

Commit 5994a6f

Browse files
committed
fix(lint): change deny(missing_docs) to only apply for tests
Closes #600
1 parent 18a29ac commit 5994a6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc(html_root_url = "https://hyperium.github.io/hyper/")]
2-
#![deny(missing_docs)]
2+
#![cfg_attr(test, deny(missing_docs))]
33
#![cfg_attr(test, deny(warnings))]
44
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
55

0 commit comments

Comments
 (0)