aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-01-24 15:11:45 +0000
committerGitHub <noreply@github.com>2022-01-24 15:11:45 +0000
commitc3c75f2200ebc32ca35403c528914baa8e025bed (patch)
tree40e1f1220c477368f700506728f4c62153c6e8d0 /book/en/src/by-example
parent69cacd05974b72d1eed7e291cc758d443e23939b (diff)
parent2b07e3e0dcb7535c843c172aed0911bfc30fc955 (diff)
Merge #591
591: Fix running command examples in chapter 1.5.5 Monotonic r=AfoHT a=GreenPenguino Run the right examples in chapter 1.5.5 in the book Co-authored-by: Erik <erik_97@live.nl>
Diffstat (limited to 'book/en/src/by-example')
-rw-r--r--book/en/src/by-example/monotonic.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/book/en/src/by-example/monotonic.md b/book/en/src/by-example/monotonic.md
index 0c8e15a..094bd5d 100644
--- a/book/en/src/by-example/monotonic.md
+++ b/book/en/src/by-example/monotonic.md
@@ -39,7 +39,7 @@ See the following example:
```
``` console
-$ cargo run --target thumbv7m-none-eabi --example message
+$ cargo run --target thumbv7m-none-eabi --example schedule
{{#include ../../../../ci/expected/schedule.run}}
```
@@ -55,6 +55,6 @@ too late and that the task is already sent for execution. The following example
```
``` console
-$ cargo run --target thumbv7m-none-eabi --example message
+$ cargo run --target thumbv7m-none-eabi --example cancel-reschedule
{{#include ../../../../ci/expected/cancel-reschedule.run}}
```