aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/spawner.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-07 00:43:18 +0100
committerDario Nieuwenhuis <[email protected]>2023-12-07 00:48:30 +0100
commitac2aec4e7a8e8a4c17c611810d382892398c9eb7 (patch)
tree6ac62c9f6d41e53d0f7f6d9737b1c0c206e531b3 /embassy-executor/src/spawner.rs
parentad2d9040d9f36d2523a22752e98f24c661643cb7 (diff)
executor: rename macro crate to embassy-executor-macros, bump it.
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 ///