aboutsummaryrefslogtreecommitdiff
path: root/macros/src
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2019-09-15 20:19:48 +0200
committerGravatar Jorge Aparicio <jorge@japaric.io> 2019-09-15 20:19:48 +0200
commitc8197f524e349de8a6497c6cba00b57189bb5c3e (patch)
treee6795bcc53631e935efafddead911991fbdf3801 /macros/src
parent4ff28e9d13e845abf39c662643ae2ff5df57ec16 (diff)
downloadrtic-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.rs4
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.
///