aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--book/en/src/by-example/tips.md4
2 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 15f6af4..78b6fa8 100644
--- a/README.md
+++ b/README.md
@@ -52,10 +52,14 @@ Formerly known as Real-Time For the Masses.
- Applications must be written using the 2018 edition.
-## [User documentation](https://rtic.rs)
+## [User documentation](https://rtic.rs) - [(Development version)](https://rtic.rs/dev)
## [API reference](https://rtic.rs/stable/api/)
+## [Community provided examples repo][examples]
+
+[examples]: https://github.com/rtic-rs/rtic-examples
+
## Chat
Join us and talk about RTIC in the [Matrix room][matrix-room].
diff --git a/book/en/src/by-example/tips.md b/book/en/src/by-example/tips.md
index f537173..e292634 100644
--- a/book/en/src/by-example/tips.md
+++ b/book/en/src/by-example/tips.md
@@ -1,5 +1,9 @@
# Tips & tricks
+For complete RTIC examples see the [rtic-examples][rtic-examples] repository.
+
+[rtic-examples]: https://github.com/rtic-rs/rtic-examples
+
## Generics
All resource proxies implement the `rtic::Mutex` trait.