aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-01-09 01:01:34 +0100
committerGitHub <noreply@github.com>2019-01-09 01:01:34 +0100
commit438a6207fb88d45f49554ba2a2fab230affff977 (patch)
tree94a71ad310da7f0d6cfe78528b6135de77260de1
parent44ee464cd1189ba8324d6a373277a03b43baae48 (diff)
parent8ac179d8ee660bc9b03c40b2357c82d904d9b415 (diff)
Merge pull request #125 from eddyp/master
Absolute link to the book so it works on crates.io
-rw-r--r--CHANGELOG.md3
-rw-r--r--src/lib.rs2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b643f0..7e83b7d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+- Use an absolute link to the book so it works when landing from crates.io
+ documentation page
+
## [v0.4.0] - 2018-11-03
### Changed
diff --git a/src/lib.rs b/src/lib.rs
index cb3389b..6aad041 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,7 +7,7 @@
//!
//! The user level documentation can be found [here].
//!
-//! [here]: ../../book/
+//! [here]: https://japaric.github.io/cortex-m-rtfm/book/
//!
//! Don't forget to check the documentation of the [`#[app]`] attribute, which is the main component
//! of the framework.