Skip to content

Commit e45499f

Browse files
committed
fix(port_arm_m): fix the error message on invalid exception handler registration
1 parent 63c127e commit e45499f

File tree

1 file changed

+1
-1
lines changed
  • src/r3_port_arm_m/src/rt

1 file changed

+1
-1
lines changed

src/r3_port_arm_m/src/rt/imp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub const fn make_interrupt_handler_table<Traits: KernelTraits>() -> InterruptHa
3636
#[cfg(any())]
3737
assert!(
3838
Traits::INTERRUPT_HANDLERS.get(i).is_none(),
39-
"registering a handler for a non-internal exception is \
39+
"registering a handler for a non-interrupt exception is \
4040
disallowed except for SysTick"
4141
);
4242
}

0 commit comments

Comments
 (0)