summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2022-01-06 11:11:52 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2022-01-06 11:11:52 +0100
commit50c8f9adb8b60929e800387459742c3caf7de443 (patch)
treefaba771b0b8443069f1a952969ee5e951669d446 /docs
parent01ec70d2410ff110c5d90ea701271a56b5c1a593 (diff)
downloadembassy-50c8f9adb8b60929e800387459742c3caf7de443.zip
Fix typo in basic_application.adoc
Diffstat (limited to 'docs')
-rw-r--r--docs/modules/ROOT/pages/basic_application.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/basic_application.adoc b/docs/modules/ROOT/pages/basic_application.adoc
index 46a375c8..749869ec 100644
--- a/docs/modules/ROOT/pages/basic_application.adoc
+++ b/docs/modules/ROOT/pages/basic_application.adoc
@@ -35,7 +35,7 @@ include::example$basic/src/main.rs[lines="18..27"]
An embassy task must be declared `async`, and may NOT take generic arguments. In this case, we are handed the LED that should be blinked and the interval of the blinking.
-NOTE: Notice that there is not busy waiting going on in this task. It is using the Embassy timer to yield execution, allowing the microcontroller to sleep in between the blinking.
+NOTE: Notice that there is no busy waiting going on in this task. It is using the Embassy timer to yield execution, allowing the microcontroller to sleep in between the blinking.
=== Main