Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #339

Merged
merged 3 commits into from
May 31, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/05-led-roulette/the-challenge.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ break DefaultHandler
# Set a breakpiont at HardFault
break HardFault

# Continue running and unill we hit the main breakpoint
# Continue running and until we hit the main breakpoint
continue

# Step from the trampoline code in entry into main
Expand Down Expand Up @@ -149,4 +149,4 @@ the [embedded discovery book](https://github.com/rust-embedded/discovery) so you
can save your changes in your own branch of your fork. We suggest creating
your own branch and leaving the `master` branch alone so the `master` branch
of your fork can stay in sync with the upstream repo. Also, it allows you to
more easily create PR's and improve this book, **thank you in advance**!
more easily create PR's and improve this book, **thank you in advance**!
2 changes: 1 addition & 1 deletion src/06-hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ hello_world::__cortex_m_rt_main () at ~/embedded-discovery/src/06-hello-world/sr
```

Now issue a `next` command which will exectue `aux6::init()` and
stop at he next executable statement in `main.rs`, which
stop at the next executable statement in `main.rs`, which
positions us at line 12:

``` text
Expand Down