diff options
author | 2017-12-22 11:20:22 +0100 | |
---|---|---|
committer | 2017-12-23 19:08:04 +0100 | |
commit | 80328e98f361bd7ea07e3376691130790dae71a3 (patch) | |
tree | 24cb226132889f8b535a31d9a3babc766776afa8 /src/exception.rs | |
parent | bdc7ca96c5593e410c8f49025d2b0fced7607a4d (diff) | |
download | cortex-m-80328e98f361bd7ea07e3376691130790dae71a3.tar.gz cortex-m-80328e98f361bd7ea07e3376691130790dae71a3.tar.zst cortex-m-80328e98f361bd7ea07e3376691130790dae71a3.zip |
revise peripheral API
closes #67
Diffstat (limited to 'src/exception.rs')
-rw-r--r-- | src/exception.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/exception.rs b/src/exception.rs index 7203dfa..b40cf1b 100644 --- a/src/exception.rs +++ b/src/exception.rs @@ -22,8 +22,7 @@ pub enum Exception { /// An interrupt Interrupt(u8), // Unreachable variant - #[doc(hidden)] - Reserved, + #[doc(hidden)] Reserved, } impl Exception { |