aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-04-19 10:40:34 +0000
committerGitHub <[email protected]>2024-04-19 10:40:34 +0000
commitda86c086510490602ffdd688760fb59cc7a1e524 (patch)
tree1de67d313b4e11c032bcb4d688820567b444def3
parent00708d8c2793bf8c59624ec92a6895e2a3a7f586 (diff)
parent0dcf0348575bcf3fde7b9a829bcb66217c55320b (diff)
Merge pull request #2839 from retif/patch-1
Update layer_by_layer.adoc to fix a typo
-rw-r--r--docs/modules/ROOT/pages/layer_by_layer.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/layer_by_layer.adoc b/docs/modules/ROOT/pages/layer_by_layer.adoc
index 1d7bdc89b..fa419f75e 100644
--- a/docs/modules/ROOT/pages/layer_by_layer.adoc
+++ b/docs/modules/ROOT/pages/layer_by_layer.adoc
@@ -63,7 +63,7 @@ Luckily, there is an elegant solution to this problem when using Embassy.
63 63
64== Async version 64== Async version
65 65
66It's time to use the Embassy capabilities to its fullest. At the core, Embassy has an async excecutor, or a runtime for async tasks if you will. The executor polls a set of tasks (defined at compile time), and whenever a task `blocks`, the executor will run another task, or put the microcontroller to sleep. 66It's time to use the Embassy capabilities to its fullest. At the core, Embassy has an async executor, or a runtime for async tasks if you will. The executor polls a set of tasks (defined at compile time), and whenever a task `blocks`, the executor will run another task, or put the microcontroller to sleep.
67 67
68[source,rust] 68[source,rust]
69---- 69----