aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/app_init.md
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2021-09-27 10:12:32 +0200
committerEmil Fresk <emil.fresk@gmail.com>2021-09-27 10:20:19 +0200
commit63c6a6afc033432f58d1ec3de39640c584553153 (patch)
tree0797d6cd62d99d8f1d9192f254478e935214d669 /book/en/src/by-example/app_init.md
parentf0c319982524988fa67cac3c59a4a4a863c409c9 (diff)
More docs updates
Diffstat (limited to 'book/en/src/by-example/app_init.md')
-rw-r--r--book/en/src/by-example/app_init.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/app_init.md b/book/en/src/by-example/app_init.md
index 7a73e1b..3112ccf 100644
--- a/book/en/src/by-example/app_init.md
+++ b/book/en/src/by-example/app_init.md
@@ -1,4 +1,4 @@
-# App initialization and `#[init]`
+# App initialization and the `#[init]` task
An RTIC application is required an `init` task setting up the system. The corresponding function must have the signature `fn(init::Context) -> (Shared, Local, init::Monotonics)`, where `Shared` and `Local` are the resource structures defined by the user.