aboutsummaryrefslogtreecommitdiff
path: root/book/en
diff options
context:
space:
mode:
authorAlex Martens <alexmgit@protonmail.com>2021-08-26 14:29:18 -0700
committerAlex Martens <alexmgit@protonmail.com>2021-08-26 14:29:18 -0700
commit81a7722ab637fa1699c3eb22b38daa4269572a0c (patch)
tree6416040145f61a6c611d9ea0789c4e07af348f57 /book/en
parent22ec841ee14cc313b1725ff6ab6de1b5706d2824 (diff)
Fix link for SLEEPONEXIT
Diffstat (limited to 'book/en')
-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 5fd1c25..04535c1 100644
--- a/book/en/src/by-example/app.md
+++ b/book/en/src/by-example/app.md
@@ -72,7 +72,7 @@ so it must run forever.
When no `idle` function is declared, the runtime sets the [SLEEPONEXIT] bit and
then sends the microcontroller to sleep after running `init`.
-[SLEEPONEXIT]: https://developer.arm.com/docs/100737/0100/power-management/sleep-mode/sleep-on-exit-bit
+[SLEEPONEXIT]: https://developer.arm.com/docs/100737/0100/Power-management/Sleep-mode/Sleep-on-exit-bit
Like in `init`, `static mut` variables will be transformed into `&'static mut`
references that are safe to access. Notice, this feature may be deprecated in the next release, see `task_local` resources.