From 25463aeb106b6c9a64192863b9f60827ac9ea2c1 Mon Sep 17 00:00:00 2001 From: Cyril Marpaud <9333398+cyril-marpaud@users.noreply.github.com> Date: Sat, 23 Mar 2024 10:22:34 +0100 Subject: [PATCH] docs: fix a typo --- cortex-m/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. //!