From 0321e9cfae55270918b2b339f7472bc731073bc8 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Fri, 5 Aug 2022 11:53:47 +0200 Subject: [PATCH] Fix comment in example --- examples/async-infinite-loop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/async-infinite-loop.rs b/examples/async-infinite-loop.rs index 602387b6ca..7615818d3c 100644 --- a/examples/async-infinite-loop.rs +++ b/examples/async-infinite-loop.rs @@ -38,7 +38,7 @@ mod app { } } - // Infinite loops are not allowed in RTIC, however in async tasks they are - in there is an + // Infinite loops are not allowed in RTIC, however in async tasks they are - if there is an // await inside the loop. #[task] async fn foo(_cx: foo::Context) {