aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/tips.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-09-17 18:41:45 +0000
committerGitHub <noreply@github.com>2019-09-17 18:41:45 +0000
commit38306389ea4d8fadac8565e681887740912e14bd (patch)
tree380d22ce8f365ad47fe77accfd04e61bfddcce57 /book/en/src/by-example/tips.md
parentff3cfac6bbbfc9093df4bbe246ade18f8d3523e5 (diff)
parentd08f965080f90ff8bfb3515fe0c06cb504544eaa (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/tips.md')
-rw-r--r--book/en/src/by-example/tips.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/tips.md b/book/en/src/by-example/tips.md
index 3852b44..a008206 100644
--- a/book/en/src/by-example/tips.md
+++ b/book/en/src/by-example/tips.md
@@ -16,7 +16,7 @@ one can write a generic function that operates on generic resources and call it
from different tasks to perform some operation on the same set of resources.
Here's one such example:
-[`rtfm::Exclusive`]: ../../api/rtfm/struct.Exclusive.html
+[`rtfm::Exclusive`]: ../../../api/rtfm/struct.Exclusive.html
``` rust
{{#include ../../../../examples/generics.rs}}