diff options
author | 2020-02-17 00:48:19 +0100 | |
---|---|---|
committer | 2020-02-17 00:48:19 +0100 | |
commit | 39b21be089a20ea7617dff97becfe61c191f3eb2 (patch) | |
tree | e3073da7ec1ffe966290d77f6154d60006b08601 | |
parent | 1e2b54148fcbf1fda8902f0dbb3d182f78d501f5 (diff) | |
download | cortex-m-39b21be089a20ea7617dff97becfe61c191f3eb2.tar.gz cortex-m-39b21be089a20ea7617dff97becfe61c191f3eb2.tar.zst cortex-m-39b21be089a20ea7617dff97becfe61c191f3eb2.zip |
Ignore a doctest again
I accidentally typoed `no_run`, but compiling the test fails since the
`device.x` path is wrong. I don't think this can be fixed, so ignore the
test instead.
-rw-r--r-- | cortex-m-rt/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs index 40b10dc..f269532 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -342,7 +342,7 @@ //! must contain build script that puts `device.x` somewhere the linker can find. An example of such //! build script is shown below: //! -//! ```no_ruin +//! ```ignore //! use std::env; //! use std::fs::File; //! use std::io::Write; |