aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2017-07-20 23:14:41 -0500
committerGravatar Jorge Aparicio <jorge@japaric.io> 2017-07-20 23:14:41 -0500
commitc64e7decfe77f1fe604889a5125933d60f8e121b (patch)
tree854039071e0f4708765e1c10a45f268959e8ed32 /src
parent0788a15a39599dece96ba5d2f8cb15c7e397939a (diff)
downloadrtic-c64e7decfe77f1fe604889a5125933d60f8e121b.tar.gz
rtic-c64e7decfe77f1fe604889a5125933d60f8e121b.tar.zst
rtic-c64e7decfe77f1fe604889a5125933d60f8e121b.zip
doc tweaks
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3b677380..710e0d4d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -48,7 +48,8 @@
//!
//! # Examples
//!
-//! In increasing grade of complexity: [examples](./examples/index.html)
+//! In increasing grade of complexity, see the [examples](./examples/index.html)
+//! module.
#![deny(missing_docs)]
#![deny(warnings)]
@@ -64,10 +65,10 @@ extern crate static_ref;
use core::cell::UnsafeCell;
-pub use cortex_m_rtfm_macros::app;
pub use cortex_m::asm::{bkpt, wfi};
pub use cortex_m::interrupt::CriticalSection;
pub use cortex_m::interrupt::free as atomic;
+pub use cortex_m_rtfm_macros::app;
pub use static_ref::Static;
use cortex_m::interrupt::Nr;
#[cfg(not(armv6m))]