diff options
author | 2019-03-01 22:12:46 -0800 | |
---|---|---|
committer | 2019-03-01 22:12:46 -0800 | |
commit | 94b11bf3905dce22d9c0c6358d7c79ee45b54f01 (patch) | |
tree | 1caf712764e9a600b1a7bc9ee74c91ca3d3f7c35 /cortex-m-rt/src | |
parent | a7b9cb98e3934b195920688139a67e416cb694b5 (diff) | |
download | cortex-m-94b11bf3905dce22d9c0c6358d7c79ee45b54f01.tar.gz cortex-m-94b11bf3905dce22d9c0c6358d7c79ee45b54f01.tar.zst cortex-m-94b11bf3905dce22d9c0c6358d7c79ee45b54f01.zip |
Update lib.rs comment describing __INTERRUPTS variable to say __INTERRUPTS instead of __EXCEPTIONS
Diffstat (limited to 'cortex-m-rt/src')
-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 1dd686f..f7ecb91 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -221,7 +221,7 @@ //! exception vectors, which includes exceptions like `HardFault` and `SysTick`. This array is //! located after `__RESET_VECTOR` in the `.vector_table` section. //! -//! - `__EXCEPTIONS`. This is the device specific interrupt portion of the vector table; its exact +//! - `__INTERRUPTS`. This is the device specific interrupt portion of the vector table; its exact //! size depends on the target device but if the `"device"` feature has not been enabled it will //! have a size of 32 vectors (on ARMv6-M) or 240 vectors (on ARMv7-M). This array is located after //! `__EXCEPTIONS` in the `.vector_table` section. |