Skip to content

Commit ccfdaec

Browse files
authored
Update qemu.md
1 parent 700d073 commit ccfdaec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/start/qemu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ that'd be `#[entry]`.
133133
[`cortex-m-rt`]: https://crates.io/crates/cortex-m-rt
134134

135135
`fn main() -> !`. Our program will be the *only* process running on the target
136-
hardware so we don't want it to end! We use a divergent function (the `-> !`
136+
hardware so we don't want it to end! We use a [divergent function](https://doc.rust-lang.org/rust-by-example/fn/diverging.html) (the `-> !`
137137
bit in the function signature) to ensure at compile time that'll be the case.
138138

139139
### Cross compiling

0 commit comments

Comments
 (0)