From b9baeedfd9d1054e0071a2d50cc16a6c4659f681 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Mon, 26 Aug 2024 08:30:09 +0000 Subject: [PATCH] Clippy --- src/interrupt.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interrupt.rs b/src/interrupt.rs index b20428b20d..f8e5bac418 100644 --- a/src/interrupt.rs +++ b/src/interrupt.rs @@ -579,6 +579,7 @@ pub mod asynch { } /// Single-slot lock-free signaling primitive supporting signalling with a `u32` bit-set. + /// /// A variation of the `IsrNotification` HAL primitive which is however safe to be notified from an ISR context. /// The difference between this primitive and `IsrNotification` is that this one is hard-wired to the /// global HAL wake runner (`HAL_WAKE_RUNNER`) and is thus occupying less space.