diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-09-17 18:41:45 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-17 18:41:45 +0000 |
| commit | 38306389ea4d8fadac8565e681887740912e14bd (patch) | |
| tree | 380d22ce8f365ad47fe77accfd04e61bfddcce57 /book/en/src/by-example/resources.md | |
| parent | ff3cfac6bbbfc9093df4bbe246ade18f8d3523e5 (diff) | |
| parent | d08f965080f90ff8bfb3515fe0c06cb504544eaa (diff) | |
Merge #248
248: update the changelog and fix some links r=korken89 a=japaric
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'book/en/src/by-example/resources.md')
| -rw-r--r-- | book/en/src/by-example/resources.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/book/en/src/by-example/resources.md b/book/en/src/by-example/resources.md index e8f61d5..b33ca9b 100644 --- a/book/en/src/by-example/resources.md +++ b/book/en/src/by-example/resources.md @@ -46,8 +46,8 @@ instead of a reference. This resource proxy is a structure that implements the [`Mutex`] trait. The only method on this trait, [`lock`], runs its closure argument in a critical section. -[`Mutex`]: ../../api/rtfm/trait.Mutex.html -[`lock`]: ../../api/rtfm/trait.Mutex.html#method.lock +[`Mutex`]: ../../../api/rtfm/trait.Mutex.html +[`lock`]: ../../../api/rtfm/trait.Mutex.html#method.lock The critical section created by the `lock` API is based on dynamic priorities: it temporarily raises the dynamic priority of the context to a *ceiling* @@ -89,7 +89,7 @@ consumer and producer end points in `init` and then each end point is stored in a different resource; `UART0` owns the producer resource and `idle` owns the consumer resource. -[`Queue`]: ../../api/heapless/spsc/struct.Queue.html +[`Queue`]: ../../../api/heapless/spsc/struct.Queue.html ``` rust {{#include ../../../../examples/late.rs}} |
