aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/pages/basic_application.adoc
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-01-06 11:15:14 +0100
committerGitHub <[email protected]>2022-01-06 11:15:14 +0100
commit23b9ede3952c2f26c54c77b8df02cd2f8e8f9aad (patch)
treefaba771b0b8443069f1a952969ee5e951669d446 /docs/modules/ROOT/pages/basic_application.adoc
parentda0c25227f188ebde4ae275f572722d27e578a67 (diff)
parent50c8f9adb8b60929e800387459742c3caf7de443 (diff)
Merge pull request #568 from danbev/runtime-doc-typo
Fix typo in runtime.adoc
Diffstat (limited to 'docs/modules/ROOT/pages/basic_application.adoc')
-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 46a375c86..749869ec0 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"]
35 35
36An 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. 36An 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.
37 37
38NOTE: 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. 38NOTE: 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.
39 39
40=== Main 40=== Main
41 41