Skip to content

Commit a7da551

Browse files
committed
Fix link for more strict commonmark interpretation.
mdbook will be moving to a newer version of pulldown-cmark which more closely follows the commonmark spec. Link labels do not allow square brackets.
1 parent f0c75b7 commit a7da551

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/start/qemu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ the tooling and the development process.
77

88
[LM3S6965]: http://www.ti.com/product/LM3S6965
99

10-
**IMPORTANT**
10+
**IMPORTANT**
1111
We'll use the name "app" for the project name in this tutorial.
1212
Whenever you see the word "app" you should replace it with the name you selected
1313
for your project. Or, you could also name your project "app" and avoid the
@@ -118,12 +118,12 @@ nightly.
118118
the panicking behavior of the program. We will cover this in more detail in the
119119
[Panicking](panicking.md) chapter of the book.
120120

121-
[`#[entry]`] is an attribute provided by the [`cortex-m-rt`] crate that's used
121+
[`#[entry]`][entry] is an attribute provided by the [`cortex-m-rt`] crate that's used
122122
to mark the entry point of the program. As we are not using the standard `main`
123123
interface we need another way to indicate the entry point of the program and
124124
that'd be `#[entry]`.
125125

126-
[`#[entry]`]: https://docs.rs/cortex-m-rt-macros/latest/cortex_m_rt_macros/attr.entry.html
126+
[entry]: https://docs.rs/cortex-m-rt-macros/latest/cortex_m_rt_macros/attr.entry.html
127127
[`cortex-m-rt`]: https://crates.io/crates/cortex-m-rt
128128

129129
`fn main() -> !`. Our program will be the *only* process running on the target

0 commit comments

Comments
 (0)