aboutsummaryrefslogtreecommitdiff
path: root/rtic/examples/spawn_arguments.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rtic/examples/spawn_arguments.rs')
-rw-r--r--rtic/examples/spawn_arguments.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/rtic/examples/spawn_arguments.rs b/rtic/examples/spawn_arguments.rs
index 01f1a654..5ca700fb 100644
--- a/rtic/examples/spawn_arguments.rs
+++ b/rtic/examples/spawn_arguments.rs
@@ -1,9 +1,10 @@
-//! examples/message_passing.rs
+//! examples/spawn_arguments.rs
-#![deny(unsafe_code)]
-#![deny(warnings)]
#![no_main]
#![no_std]
+#![deny(warnings)]
+#![deny(unsafe_code)]
+#![deny(missing_docs)]
#![feature(type_alias_impl_trait)]
use panic_semihosting as _;