From ba587a0d8bea7b19f343cae7ee3762b0b96cfe25 Mon Sep 17 00:00:00 2001 From: Adrian Friedli Date: Wed, 18 Sep 2024 14:00:40 +0200 Subject: [PATCH] fix typo --- examples/onoff_light/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/onoff_light/src/main.rs b/examples/onoff_light/src/main.rs index 15fc3fee..fbf32c76 100644 --- a/examples/onoff_light/src/main.rs +++ b/examples/onoff_light/src/main.rs @@ -133,7 +133,7 @@ fn run() -> Result<(), Error> { core::mem::size_of_val(&responder.run::<4, 4>()) ); - // Run the responder with up to 4 handlers (i.e. 4 exchanges can be handled simultenously) + // Run the responder with up to 4 handlers (i.e. 4 exchanges can be handled simultaneously) // Clients trying to open more exchanges than the ones currently running will get "I'm busy, please try again later" let mut respond = pin!(responder.run::<4, 4>());