aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/software_tasks.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-01-08 06:19:22 +0000
committerGitHub <noreply@github.com>2022-01-08 06:19:22 +0000
commitd51aaf3ad3ffb2314f8885515e223ca2f591b5a3 (patch)
treeda09d02bcbadc61b599aec98163333718c2701a4 /book/en/src/by-example/software_tasks.md
parent4a16310443002ae8cca946d94775ca38172a7885 (diff)
parentce6e014cf07ba03327e9b5b5f348aa3deeb0fdbe (diff)
Merge #584
584: mq/minor corrections r=korken89 a=mareq Co-authored-by: Mareq Balint <mareq@balint.eu>
Diffstat (limited to 'book/en/src/by-example/software_tasks.md')
-rw-r--r--book/en/src/by-example/software_tasks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/software_tasks.md b/book/en/src/by-example/software_tasks.md
index 370792f..f244ca6 100644
--- a/book/en/src/by-example/software_tasks.md
+++ b/book/en/src/by-example/software_tasks.md
@@ -10,7 +10,7 @@ bound interrupt vector.
These free interrupts used as dispatchers are interrupt vectors not used by hardware tasks.
The `#[task]` attribute used on a function declare it as a software tasks.
-The static method `task_name::spawn()` spawn (start) a software task and
+The static method `task_name::spawn()` spawns (starts) a software task and
given that there are no higher priority tasks running the task will start executing directly.
A list of “free” and usable interrupts allows the framework to dispatch software tasks.