Skip to content

Commit

Permalink
Update qemu.md
Browse files Browse the repository at this point in the history
  • Loading branch information
flip111 authored Feb 17, 2019
1 parent 700d073 commit ccfdaec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/start/qemu.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ that'd be `#[entry]`.
[`cortex-m-rt`]: https://crates.io/crates/cortex-m-rt

`fn main() -> !`. Our program will be the *only* process running on the target
hardware so we don't want it to end! We use a divergent function (the `-> !`
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 `-> !`
bit in the function signature) to ensure at compile time that'll be the case.

### Cross compiling
Expand Down

0 comments on commit ccfdaec

Please sign in to comment.