diff options
author | 2023-10-13 21:44:50 +0200 | |
---|---|---|
committer | 2023-10-15 05:51:38 +0000 | |
commit | 4fc6f4799e488c16be2e902902b58bd0c7e6cf20 (patch) | |
tree | e301f1ef1df2c9d042bf8d98dc8992eff19efad5 | |
parent | bedaae9395343b8a45e7efb245ac6ef063b286b6 (diff) | |
download | rtic-4fc6f4799e488c16be2e902902b58bd0c7e6cf20.tar.gz rtic-4fc6f4799e488c16be2e902902b58bd0c7e6cf20.tar.zst rtic-4fc6f4799e488c16be2e902902b58bd0c7e6cf20.zip |
Fix typo
-rw-r--r-- | rtic/examples/async-timeout.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtic/examples/async-timeout.rs b/rtic/examples/async-timeout.rs index 24f86dc6..341a5010 100644 --- a/rtic/examples/async-timeout.rs +++ b/rtic/examples/async-timeout.rs @@ -71,7 +71,7 @@ mod app { instant += 1000.millis(); Systick::delay_until(instant).await; - // absolute point it time for timeout + // absolute point in time for timeout let timeout = instant + 500.millis(); hprintln!("now is {:?}, timeout at {:?}", Systick::now(), timeout); |