aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/src
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-11-11 17:12:22 +0100
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-11-11 17:12:22 +0100
commit74976ae36b86f1d99531c8cdb60761f57f844e0e (patch)
tree281a5fa591bd5679c5c07af65eeebc9c7c7f1b89 /cortex-m-rt/src
parenta029b4864b49a9593abc96af4c7a22d4c99e0b6d (diff)
downloadcortex-m-74976ae36b86f1d99531c8cdb60761f57f844e0e.tar.gz
cortex-m-74976ae36b86f1d99531c8cdb60761f57f844e0e.tar.zst
cortex-m-74976ae36b86f1d99531c8cdb60761f57f844e0e.zip
remove duplicated line
Diffstat (limited to 'cortex-m-rt/src')
-rw-r--r--cortex-m-rt/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs
index e1b5e45..f418e7f 100644
--- a/cortex-m-rt/src/lib.rs
+++ b/cortex-m-rt/src/lib.rs
@@ -19,7 +19,6 @@
//! - `#[entry]` to declare the entry point of the program
//! - `#[exception]` to override an exception handler. If not overridden all exception handlers
//! default to an infinite loop.
-//! default to an infinite loop.
//! - `#[pre_init]` to run code *before* `static` variables are initialized
//!
//! This crate also implements a related attribute called `#[interrupt]`, which allows you