minor markdownlints

This commit is contained in:
Daniel Carosone 2020-10-02 20:43:52 +10:00
parent 91c2d4850e
commit 3d6a0ea64f
4 changed files with 3 additions and 7 deletions

View file

@ -1,4 +1,4 @@
## Resources # Resources
The framework provides an abstraction to share data between any of the contexts The framework provides an abstraction to share data between any of the contexts
we saw in the previous section (task handlers, `init` and `idle`): resources. we saw in the previous section (task handlers, `init` and `idle`): resources.

View file

@ -116,6 +116,7 @@ Here's an example where `heapless::Pool` is used to "box" buffers of 128 bytes.
``` rust ``` rust
{{#include ../../../../examples/pool.rs}} {{#include ../../../../examples/pool.rs}}
``` ```
``` console ``` console
$ cargo run --example pool $ cargo run --example pool
{{#include ../../../../ci/expected/pool.run}} {{#include ../../../../ci/expected/pool.run}}

View file

@ -8,7 +8,6 @@ the version v0.5.0 of the framework.
First, the version of the `cortex-m-rtic` dependency needs to be updated to First, the version of the `cortex-m-rtic` dependency needs to be updated to
`"0.5.0"`. The `timer-queue` feature needs to be removed. `"0.5.0"`. The `timer-queue` feature needs to be removed.
``` toml ``` toml
[dependencies.cortex-m-rtic] [dependencies.cortex-m-rtic]
# change this # change this

View file

@ -8,14 +8,11 @@ change.
[RFC #33]: https://github.com/rtic-rs/rfcs/pull/33 [RFC #33]: https://github.com/rtic-rs/rfcs/pull/33
## `Cargo.toml` ## `Cargo.toml`
First, the `cortex-m-rtfm` dependency needs to be updated to First, the `cortex-m-rtfm` dependency needs to be updated to
`cortex-m-rtic`. `cortex-m-rtic`.
``` toml ``` toml
[dependencies] [dependencies]
# change this # change this
@ -51,4 +48,3 @@ const APP: () = {
}; };
``` ```