From 4fc6f4799e488c16be2e902902b58bd0c7e6cf20 Mon Sep 17 00:00:00 2001 From: Fabian Wolter Date: Fri, 13 Oct 2023 21:44:50 +0200 Subject: [PATCH] Fix typo --- rtic/examples/async-timeout.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtic/examples/async-timeout.rs b/rtic/examples/async-timeout.rs index 24f86dc618..341a501083 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);