diff options
author | 2019-11-27 05:56:56 +0000 | |
---|---|---|
committer | 2019-11-27 05:56:56 +0000 | |
commit | b851c3b3d0d20f1371a750ce0a9a39bc468e6ed9 (patch) | |
tree | a4119af8ecc1d431b7ba0de61338f2351aaeca5c /cortex-m-rt/macros/src/lib.rs | |
parent | 3445f11577d291195dee31e18cbfcb2a6982b124 (diff) | |
parent | c284d555b5ac3f6807be633e218302ba8cc3bbcf (diff) | |
download | cortex-m-b851c3b3d0d20f1371a750ce0a9a39bc468e6ed9.tar.gz cortex-m-b851c3b3d0d20f1371a750ce0a9a39bc468e6ed9.tar.zst cortex-m-b851c3b3d0d20f1371a750ce0a9a39bc468e6ed9.zip |
Merge #219
219: Inline attr. macro docs and fix links r=therealprof a=jonas-schievink
This makes `cortex-m-rt-macros` purely an implementation detail, so I've put a warning in place to reflect that.
This should close https://github.com/rust-embedded/cortex-m-rt/issues/138
Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
Diffstat (limited to 'cortex-m-rt/macros/src/lib.rs')
-rw-r--r-- | cortex-m-rt/macros/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cortex-m-rt/macros/src/lib.rs b/cortex-m-rt/macros/src/lib.rs index b6b0fe4..543130c 100644 --- a/cortex-m-rt/macros/src/lib.rs +++ b/cortex-m-rt/macros/src/lib.rs @@ -1,3 +1,7 @@ +//! Internal implementation details of `cortex-m-rt`. +//! +//! Do not use this crate directly. + #![deny(warnings)] extern crate proc_macro; |