Skip to content

Commit df73bb3

Browse files
committed
Change missing_docs from deny to warn.
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.
1 parent d04a2ed commit df73bb3

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)