aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2021-09-27 11:57:43 +0200
committerGravatar Emil Fresk <emil.fresk@gmail.com> 2021-09-27 13:42:44 +0200
commitf37a928c360ab902fa1fb1b0b92c23ee748c06e7 (patch)
tree59ea5ed576ca7427630eb8303e2761145f0b836a
parent380a20859cf09c631467c4c49db27dd359f231c0 (diff)
downloadrtic-f37a928c360ab902fa1fb1b0b92c23ee748c06e7.tar.gz
rtic-f37a928c360ab902fa1fb1b0b92c23ee748c06e7.tar.zst
rtic-f37a928c360ab902fa1fb1b0b92c23ee748c06e7.zip
Fixing bad english
-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 cb0cf9f6..d5968761 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.