diff options
| author | Fabian Wolter <github@fabian-wolter.de> | 2023-10-13 21:44:50 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2023-10-15 05:51:38 +0000 |
| commit | 4fc6f4799e488c16be2e902902b58bd0c7e6cf20 (patch) | |
| tree | e301f1ef1df2c9d042bf8d98dc8992eff19efad5 | |
| parent | bedaae9395343b8a45e7efb245ac6ef063b286b6 (diff) | |
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 24f86dc..341a501 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); |
