aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-time/src/timer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-time/src/timer.rs b/embassy-time/src/timer.rs
index 2f5967c63..e6d1aed84 100644
--- a/embassy-time/src/timer.rs
+++ b/embassy-time/src/timer.rs
@@ -253,7 +253,7 @@ impl Ticker {
253 } 253 }
254 254
255 /// Reset the ticker at the deadline. 255 /// Reset the ticker at the deadline.
256 /// If the deadline is in the past, the ticker will fire instantly. 256 /// If the deadline is in the past, the ticker will fire before the next scheduled tick.
257 pub fn reset_at(&mut self, deadline: Instant) { 257 pub fn reset_at(&mut self, deadline: Instant) {
258 self.expires_at = deadline + self.duration; 258 self.expires_at = deadline + self.duration;
259 } 259 }