From 148cc2b8ea83cfb035ff6abd76dbe43e6b7c1bc8 Mon Sep 17 00:00:00 2001 From: Jonathan Nilsson Date: Mon, 19 Jul 2021 18:58:26 +0200 Subject: [PATCH] Warn missing docs, deny in ci --- rp2040-hal/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rp2040-hal/src/lib.rs b/rp2040-hal/src/lib.rs index 2d366b0..e3a2673 100644 --- a/rp2040-hal/src/lib.rs +++ b/rp2040-hal/src/lib.rs @@ -3,7 +3,7 @@ //! This is an implementation of the [`embedded-hal`] traits for the RP2040 microcontroller //! NOTE This HAL is still under active development. This API will remain volatile until 1.0.0 -#![deny(missing_docs)] +#![warn(missing_docs)] #![no_std] extern crate cortex_m;