aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-10-16 17:04:42 +0000
committerGitHub <noreply@github.com>2019-10-16 17:04:42 +0000
commit1ccacf2102fb306867c0afb35d6d5dab43f75baf (patch)
tree75483fdc80167e9eb2ac594d967fa45d9c3b59ff /book/en/src/by-example
parenta458a0703153f17ae9170ea88a38348ebd290388 (diff)
Update book/en/src/by-example/timer-queue.md
Co-Authored-By: Jonas Schievink <jonasschievink@gmail.com>
Diffstat (limited to 'book/en/src/by-example')
-rw-r--r--book/en/src/by-example/timer-queue.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/timer-queue.md b/book/en/src/by-example/timer-queue.md
index fb41512..94d2281 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