Update book/en/src/by-example/timer-queue.md

Co-Authored-By: Jonas Schievink <jonasschievink@gmail.com>
This commit is contained in:
Jorge Aparicio 2019-10-16 17:04:42 +00:00 committed by GitHub
parent a458a07031
commit 1ccacf2102
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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