aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Peter Taylor <40178570+FluenTech@users.noreply.github.com> 2020-04-13 09:32:49 -0600
committerGravatar GitHub <noreply@github.com> 2020-04-13 09:32:49 -0600
commit02f965ef093ae7195e2ec1b346233e2e6175f53b (patch)
treec4b4dc2369a4f198dfefa040207d7336bebde66d
parentd77270adc21bed8efe0302953cefc027e7a73042 (diff)
downloadrtic-02f965ef093ae7195e2ec1b346233e2e6175f53b.tar.gz
rtic-02f965ef093ae7195e2ec1b346233e2e6175f53b.tar.zst
rtic-02f965ef093ae7195e2ec1b346233e2e6175f53b.zip
correct SLEEPONEXIT reference link
-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 5cace373..00e00519 100644
--- a/book/en/src/by-example/app.md
+++ b/book/en/src/by-example/app.md
@@ -70,7 +70,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/products/architecture/cpu-architecture/m-profile/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.