From 3bd8d7b99b0d7f1b42b9c3de2c65e25ca05b6f86 Mon Sep 17 00:00:00 2001 From: Dezhi Wu Date: Tue, 25 May 2021 10:40:18 +0800 Subject: [PATCH 1/2] fix typo --- src/05-led-roulette/the-challenge.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/05-led-roulette/the-challenge.md b/src/05-led-roulette/the-challenge.md index e7ef424fb..77f0d3ba5 100644 --- a/src/05-led-roulette/the-challenge.md +++ b/src/05-led-roulette/the-challenge.md @@ -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 @@ -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**! \ No newline at end of file +more easily create PR's and improve this book, **thank you in advance**! From b877f286db359b5bd6de86593ccd9381866cca9c Mon Sep 17 00:00:00 2001 From: Dezhi Wu Date: Tue, 25 May 2021 12:38:20 +0800 Subject: [PATCH 2/2] Update README.md fix typo. --- src/06-hello-world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/06-hello-world/README.md b/src/06-hello-world/README.md index a3738d80f..2daae1bc6 100644 --- a/src/06-hello-world/README.md +++ b/src/06-hello-world/README.md @@ -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