aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/app.md
diff options
context:
space:
mode:
authorVincent Esche <regexident@gmail.com>2020-07-14 16:01:14 +0200
committerVincent Esche <regexident@gmail.com>2020-07-14 16:01:14 +0200
commite9fa71c065add03b9aedfb0e848b115370732b3c (patch)
tree3d007bc87f32cb440171042a69ebab35fe6ee490 /book/en/src/by-example/app.md
parent3b48447934c18264fb9222faa573719079719b4f (diff)
Fixed some more spelling
Diffstat (limited to 'book/en/src/by-example/app.md')
-rw-r--r--book/en/src/by-example/app.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/app.md b/book/en/src/by-example/app.md
index bff516d..e0f4f94 100644
--- a/book/en/src/by-example/app.md
+++ b/book/en/src/by-example/app.md
@@ -90,7 +90,7 @@ $ cargo run --example idle
To declare interrupt handlers the framework provides a `#[task]` attribute that
can be attached to functions. This attribute takes a `binds` argument whose
value is the name of the interrupt to which the handler will be bound to; the
-function adornated with this attribute becomes the interrupt handler. Within the
+function adorned with this attribute becomes the interrupt handler. Within the
framework these type of tasks are referred to as *hardware* tasks, because they
start executing in reaction to a hardware event.