aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src
diff options
context:
space:
mode:
authorKat Perez <[email protected]>2025-05-05 12:17:03 -0400
committerKat Perez <[email protected]>2025-05-06 08:27:46 -0400
commitbbffd2b3f9f27dd9c3ae3f66ac88bcd1ee1dcb93 (patch)
treec0b79304ed04b631a2f2cb9a0e18f7b154728829 /embassy-executor/src
parent032898adf5848da237e4bf55b8c06c2ff73cae7c (diff)
whitespace in the documentation
Diffstat (limited to 'embassy-executor/src')
-rw-r--r--embassy-executor/src/spawner.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/spawner.rs b/embassy-executor/src/spawner.rs
index f87700be6..4fc4312b9 100644
--- a/embassy-executor/src/spawner.rs
+++ b/embassy-executor/src/spawner.rs
@@ -182,7 +182,7 @@ impl Spawner {
182 } 182 }
183 183
184 /// When rtos-trace is disabled, spawn_named falls back to regular spawn. 184 /// When rtos-trace is disabled, spawn_named falls back to regular spawn.
185/// This maintains API compatibility while optimizing out the name parameter. 185 /// This maintains API compatibility while optimizing out the name parameter.
186 #[cfg(not(feature = "rtos-trace"))] 186 #[cfg(not(feature = "rtos-trace"))]
187 pub fn spawn_named<S>(&self, _name: &'static str, token: SpawnToken<S>) -> Result<(), SpawnError> { 187 pub fn spawn_named<S>(&self, _name: &'static str, token: SpawnToken<S>) -> Result<(), SpawnError> {
188 self.spawn(token) 188 self.spawn(token)