Skip to content

Commit 707b8c4

Browse files
bors[bot]Dirbaio
andauthored
Merge #391
391: Change missing_docs from deny to warn. r=eldruin a=Dirbaio It is annoying to get hard errors while developing, it prevents testing things out without documenting them because it fails the build. This changes it to warn, which has the same effect in CI (because it already has `RUSTFLAGS: '--deny warnings'`), but still allows buildilng. Co-authored-by: Dario Nieuwenhuis <[email protected]>
2 parents d04a2ed + df73bb3 commit 707b8c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

embedded-hal-async/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! **NOTE** The traits and modules in this crate should follow the same structure as in
88
//! `embedded-hal` to ease merging and migration.
99
10-
#![deny(missing_docs)]
10+
#![warn(missing_docs)]
1111
#![no_std]
1212
#![feature(generic_associated_types)]
1313
#![feature(type_alias_impl_trait)]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@
350350
//! # fn main() {}
351351
//! ```
352352
353-
#![deny(missing_docs)]
353+
#![warn(missing_docs)]
354354
#![no_std]
355355

356356
pub mod fmt;

0 commit comments

Comments
 (0)