aboutsummaryrefslogtreecommitdiff
path: root/macros/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-09-15 18:21:58 +0000
committerGitHub <noreply@github.com>2019-09-15 18:21:58 +0000
commita601b3fa2600409e73d078b6065c2cd3cfebd75a (patch)
treee6795bcc53631e935efafddead911991fbdf3801 /macros/src/lib.rs
parent4ff28e9d13e845abf39c662643ae2ff5df57ec16 (diff)
parentc8197f524e349de8a6497c6cba00b57189bb5c3e (diff)
Merge #234
234: fix gh-pages build r=korken89 a=japaric this should build the latest docs and the docs for v0.4.x after successful merges Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'macros/src/lib.rs')
-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 fdde5c6..54282e1 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.
///