Skip to content

Commit ec38bc7

Browse files
authored
Merge pull request #68 from kraai/patch-1
Fix typos
2 parents e1c75ad + 7e6fb47 commit ec38bc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/05-led-roulette/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ fn main() {
3838
```
3939

4040
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).
4444

4545
If you are a careful observer, you'll also notice there is a `.cargo` directory in the Cargo project
4646
as well. `:-)`

0 commit comments

Comments
 (0)