File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ fn main() {
38
38
```
39
39
40
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).
41
+ ` #![no_std] ` attribute. That attribute 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 run on bare metal systems
43
+ (i.e., systems without an OS).
44
44
45
45
If you are a careful observer, you'll also notice there is a ` .cargo ` directory in the Cargo project
46
46
as well. ` :-) `
You can’t perform that action at this time.
0 commit comments