From e57155a7c2f84c9fbd02c2066d0050371c67d834 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};