aboutsummaryrefslogtreecommitdiff
path: root/embassy-time-driver
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-time-driver')
-rw-r--r--embassy-time-driver/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-time-driver/src/lib.rs b/embassy-time-driver/src/lib.rs
index 565597935..aab2f626e 100644
--- a/embassy-time-driver/src/lib.rs
+++ b/embassy-time-driver/src/lib.rs
@@ -98,7 +98,7 @@ pub trait Driver: Send + Sync + 'static {
98 /// 98 ///
99 /// Implementations MUST ensure that: 99 /// Implementations MUST ensure that:
100 /// - This is guaranteed to be monotonic, i.e. a call to now() will always return 100 /// - This is guaranteed to be monotonic, i.e. a call to now() will always return
101 /// a greater or equal value than earler calls. Time can't "roll backwards". 101 /// a greater or equal value than earlier calls. Time can't "roll backwards".
102 /// - It "never" overflows. It must not overflow in a sufficiently long time frame, say 102 /// - It "never" overflows. It must not overflow in a sufficiently long time frame, say
103 /// in 10_000 years (Human civilization is likely to already have self-destructed 103 /// in 10_000 years (Human civilization is likely to already have self-destructed
104 /// 10_000 years from now.). This means if your hardware only has 16bit/32bit timers 104 /// 10_000 years from now.). This means if your hardware only has 16bit/32bit timers