From 1ccacf2102fb306867c0afb35d6d5dab43f75baf Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 16 Oct 2019 17:04:42 +0000 Subject: [PATCH] Update book/en/src/by-example/timer-queue.md Co-Authored-By: Jonas Schievink --- book/en/src/by-example/timer-queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/en/src/by-example/timer-queue.md b/book/en/src/by-example/timer-queue.md index fb41512d10..94d228190b 100644 --- a/book/en/src/by-example/timer-queue.md +++ b/book/en/src/by-example/timer-queue.md @@ -35,7 +35,7 @@ scheduling a task the (user-defined) `Instant` at which the task should be executed must be passed as the first argument of the `schedule` invocation. Additionally, the chosen `monotonic` timer must be configured and initialized -during the `#[init]** phase. Note that this is *also* the case if you choose to +during the `#[init]` phase. Note that this is *also* the case if you choose to use the `CYCCNT` provided by the `cortex-m-rtfm` crate. The example below schedules two tasks from `init`: `foo` and `bar`. `foo` is