diff --git a/cortex-m/src/lib.rs b/cortex-m/src/lib.rs index e7992c77..f74fcbf7 100644 --- a/cortex-m/src/lib.rs +++ b/cortex-m/src/lib.rs @@ -15,7 +15,7 @@ //! implementation suitable for single-core targets, based on disabling interrupts globally. //! //! It is **unsound** to enable it on multi-core targets or for code running in unprivileged mode, -//! and may cause functional problems in systems where some interrupts must be not be disabled +//! and may cause functional problems in systems where some interrupts must not be disabled //! or critical sections are managed as part of an RTOS. In these cases, you should use //! a target-specific implementation instead, typically provided by a HAL or RTOS crate. //!