From b37fd820c0d1264e99041b1619b1111f54f7a277 Mon Sep 17 00:00:00 2001 From: Per Lindgren Date: Thu, 2 Feb 2023 21:07:48 +0100 Subject: [PATCH] deny missing docs --- rtic/examples/async-timeout.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtic/examples/async-timeout.rs b/rtic/examples/async-timeout.rs index a850b106fc..2e974409d3 100644 --- a/rtic/examples/async-timeout.rs +++ b/rtic/examples/async-timeout.rs @@ -2,6 +2,8 @@ // #![no_main] #![no_std] +#![deny(warnings)] +#![deny(missing_docs)] #![feature(type_alias_impl_trait)] use cortex_m_semihosting::{debug, hprintln};