Skip to content

Commit

Permalink
fix(lint): change deny(missing_docs) to only apply for tests
Browse files Browse the repository at this point in the history
Closes #600
  • Loading branch information
seanmonstar committed Jul 8, 2015
1 parent 18a29ac commit 5994a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc(html_root_url = "https://hyperium.github.io/hyper/")]
#![deny(missing_docs)]
#![cfg_attr(test, deny(missing_docs))]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(all(test, feature = "nightly"), feature(test))]

Expand Down

0 comments on commit 5994a6f

Please sign in to comment.