aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/lib.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-23 15:43:31 +0100
committerGitHub <[email protected]>2023-12-23 15:43:31 +0100
commit05b3d106c8e9e7389fbe6d24b47dc9cc8a90d87e (patch)
treedcbfdc44f2955b5a6cec0c31148bbe13fe2217f8 /embassy-executor/src/lib.rs
parent381c5b54fa3953a952b33263fc930c2b8420b1e9 (diff)
parent6bbc316312b2ba372ea05c52924d99bc4fb5382a (diff)
Merge pull request #2347 from barnabywalters/executor-docs
[embassy-executor] improved documentation
Diffstat (limited to 'embassy-executor/src/lib.rs')
-rw-r--r--embassy-executor/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-executor/src/lib.rs b/embassy-executor/src/lib.rs
index 4c6900a6d..eea118ade 100644
--- a/embassy-executor/src/lib.rs
+++ b/embassy-executor/src/lib.rs
@@ -3,6 +3,9 @@
3#![doc = include_str!("../README.md")] 3#![doc = include_str!("../README.md")]
4#![warn(missing_docs)] 4#![warn(missing_docs)]
5 5
6//! ## Feature flags
7#![doc = document_features::document_features!(feature_label = r#"<span class="stab portability"><code>{feature}</code></span>"#)]
8
6// This mod MUST go first, so that the others see its macros. 9// This mod MUST go first, so that the others see its macros.
7pub(crate) mod fmt; 10pub(crate) mod fmt;
8 11