From 2f8c7d3083b515403a58acdcd4a3c5fcccfb27d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Fri, 24 Feb 2023 22:28:02 +0100 Subject: [PATCH] Book: Fix two broken links --- book/en/src/by-example/app.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/en/src/by-example/app.md b/book/en/src/by-example/app.md index 8840bdbdee..0d977a1c57 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