aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/spawner.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor/src/spawner.rs')
-rw-r--r--embassy-executor/src/spawner.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-executor/src/spawner.rs b/embassy-executor/src/spawner.rs
index 5a3a0dee1..271606244 100644
--- a/embassy-executor/src/spawner.rs
+++ b/embassy-executor/src/spawner.rs
@@ -115,9 +115,9 @@ impl Spawner {
115 } 115 }
116 } 116 }
117 117
118 // Used by the `embassy_macros::main!` macro to throw an error when spawn 118 // Used by the `embassy_executor_macros::main!` macro to throw an error when spawn
119 // fails. This is here to allow conditional use of `defmt::unwrap!` 119 // fails. This is here to allow conditional use of `defmt::unwrap!`
120 // without introducing a `defmt` feature in the `embassy_macros` package, 120 // without introducing a `defmt` feature in the `embassy_executor_macros` package,
121 // which would require use of `-Z namespaced-features`. 121 // which would require use of `-Z namespaced-features`.
122 /// Spawn a task into an executor, panicking on failure. 122 /// Spawn a task into an executor, panicking on failure.
123 /// 123 ///