aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/hardware_tasks.md
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2021-09-27 11:57:43 +0200
committerEmil Fresk <emil.fresk@gmail.com>2021-09-27 13:42:44 +0200
commitf37a928c360ab902fa1fb1b0b92c23ee748c06e7 (patch)
tree59ea5ed576ca7427630eb8303e2761145f0b836a /book/en/src/by-example/hardware_tasks.md
parent380a20859cf09c631467c4c49db27dd359f231c0 (diff)
Fixing bad english
Diffstat (limited to 'book/en/src/by-example/hardware_tasks.md')
-rw-r--r--book/en/src/by-example/hardware_tasks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/hardware_tasks.md b/book/en/src/by-example/hardware_tasks.md
index cb0cf9f..d596876 100644
--- a/book/en/src/by-example/hardware_tasks.md
+++ b/book/en/src/by-example/hardware_tasks.md
@@ -1,6 +1,6 @@
# Hardware tasks
-In it's core RTIC is based on using the interrupt controller in the hardware to do scheduling and
+At its core RTIC is based on using the interrupt controller in the hardware to do scheduling and
run tasks, as all tasks in the framework are run as interrupt handlers (except `#[init]` and
`#[idle]`). This also means that you can directly bind tasks to interrupt handlers.