aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/lib.rs
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2023-12-19 14:19:46 +0100
committerUlf Lilleengen <[email protected]>2023-12-19 14:19:46 +0100
commitf4b77c967fec9edacc6818aa8d935fda60bc743f (patch)
tree102bbf8a892b830959fd87529c4e86f7f65c379d /embassy-rp/src/lib.rs
parentca2e3759ad31f511c239d30132a28714b0e402db (diff)
docs: document all embassy-rp public apis
Enable missing doc warnings.
Diffstat (limited to 'embassy-rp/src/lib.rs')
-rw-r--r--embassy-rp/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-rp/src/lib.rs b/embassy-rp/src/lib.rs
index 2c49787df..004b94589 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -1,6 +1,7 @@
1#![no_std] 1#![no_std]
2#![allow(async_fn_in_trait)] 2#![allow(async_fn_in_trait)]
3#![doc = include_str!("../README.md")] 3#![doc = include_str!("../README.md")]
4#![warn(missing_docs)]
4 5
5// This mod MUST go first, so that the others see its macros. 6// This mod MUST go first, so that the others see its macros.
6pub(crate) mod fmt; 7pub(crate) mod fmt;