diff options
author | 2019-09-15 20:19:48 +0200 | |
---|---|---|
committer | 2019-09-15 20:19:48 +0200 | |
commit | c8197f524e349de8a6497c6cba00b57189bb5c3e (patch) | |
tree | e6795bcc53631e935efafddead911991fbdf3801 /macros/src | |
parent | 4ff28e9d13e845abf39c662643ae2ff5df57ec16 (diff) | |
download | rtic-c8197f524e349de8a6497c6cba00b57189bb5c3e.tar.gz rtic-c8197f524e349de8a6497c6cba00b57189bb5c3e.tar.zst rtic-c8197f524e349de8a6497c6cba00b57189bb5c3e.zip |
fix gh-pages build
Diffstat (limited to 'macros/src')
-rw-r--r-- | macros/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/src/lib.rs b/macros/src/lib.rs index fdde5c69..54282e1e 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -89,9 +89,9 @@ mod tests; /// /// - `resources: <fn-name>::Resources`. A `struct` that contains all the resources that can be /// accessed from this context. Each field is a different resource; each resource may appear as a -/// reference (`&[mut]-`) or as proxy structure that implements the [`rftm::Mutex`] trait. +/// reference (`&[mut]-`) or as proxy structure that implements the [`rftm::Mutex`][rtfm-mutex] trait. /// -/// [`rtfm::Mutex`]: ../rtfm/trait.Mutex.html +/// [rtfm-mutex]: ../rtfm/trait.Mutex.html /// /// - `schedule: <fn-name>::Schedule`. A `struct` that can be used to schedule *software* tasks. /// |