We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1c75ad + 7e6fb47 commit ec38bc7Copy full SHA for ec38bc7
src/05-led-roulette/README.md
@@ -38,9 +38,9 @@ fn main() {
38
```
39
40
The only thing that should look different from a standard Rust program is the addition of the
41
-`#![no_std]` attribute. That attributes says that this program won't use the `std` crate, which
42
-assumes an underlying OS, but the `core` crate, a subset of `std` that can on bare metal systems
43
-(systems without an OS).
+`#![no_std]` attribute. That attribute says that this program won't use the `std` crate, which
+assumes an underlying OS, but the `core` crate, a subset of `std` that can run on bare metal systems
+(i.e., systems without an OS).
44
45
If you are a careful observer, you'll also notice there is a `.cargo` directory in the Cargo project
46
as well. `:-)`
0 commit comments