aboutsummaryrefslogtreecommitdiff
path: root/book/en
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2023-02-24 22:28:02 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:35:26 +0100
commit2f8c7d3083b515403a58acdcd4a3c5fcccfb27d1 (patch)
treeaca7fddc906cfda2ac5e6155ffe92d8ed16c0415 /book/en
parent1b699c656fe0d6d9fbc302116fe4d27ef3c178ab (diff)
Book: Fix two broken links
Diffstat (limited to 'book/en')
-rw-r--r--book/en/src/by-example/app.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/book/en/src/by-example/app.md b/book/en/src/by-example/app.md
index 8840bdb..0d977a1 100644
--- a/book/en/src/by-example/app.md
+++ b/book/en/src/by-example/app.md
@@ -6,9 +6,9 @@ All RTIC applications use the [`app`] attribute (`#[app(..)]`). This attribute o
The `app` attribute will expand into a suitable entry point and thus replaces the use of the [`cortex_m_rt::entry`] attribute.
-[`app`]: ../../../api/cortex_m_rtic_macros/attr.app.html
+[`app`]: ../../../api/rtic_macros/attr.app.html
[`svd2rust`]: https://crates.io/crates/svd2rust
-[`cortex_m_rt::entry`]: ../../../api/cortex_m_rt_macros/attr.entry.html
+[`cortex_m_rt::entry`]: https://docs.rs/cortex-m-rt-macros/latest/cortex_m_rt_macros/attr.entry.html
## Structure and zero-cost concurrency