From 5c1f9cf99cc0b6d0215357bb4041ce5b936e9095 Mon Sep 17 00:00:00 2001 From: Charles Edward Gagnon Date: Sat, 2 Nov 2024 16:11:53 -0400 Subject: [PATCH] rustfmt --- embassy-time-driver/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/embassy-time-driver/src/lib.rs b/embassy-time-driver/src/lib.rs index 75f7037e3..12f40b9b9 100644 --- a/embassy-time-driver/src/lib.rs +++ b/embassy-time-driver/src/lib.rs @@ -109,8 +109,8 @@ pub trait Driver: Send + Sync + 'static { /// Try allocating an alarm handle. Returns None if no alarms left. /// Initially the alarm has no callback set, and a null `ctx` pointer. /// - /// The allocated alarm is a reusable resource and can be used multiple times. - /// Once the alarm has fired, it remains allocated and can be set again without needing + /// The allocated alarm is a reusable resource and can be used multiple times. + /// Once the alarm has fired, it remains allocated and can be set again without needing /// to be reallocated. /// /// # Safety @@ -120,8 +120,8 @@ pub trait Driver: Send + Sync + 'static { /// Set the callback function to be called when the alarm triggers. /// The callback may be called from any context (interrupt or thread mode). /// - /// The callback is maintained after the alarm has fired. Callers do not need - /// to set a callback again before setting another alarm, unless they want to + /// The callback is maintained after the alarm has fired. Callers do not need + /// to set a callback again before setting another alarm, unless they want to /// change the callback function or context. fn set_alarm_callback(&self, alarm: AlarmHandle, callback: fn(*mut ()), ctx: *mut ());