Просмотр исходного кода

Merge #131

131: fix a typo r=romancardenas a=OccupyMars2025



Co-authored-by: OccupyMars2025 <31559413+OccupyMars2025@users.noreply.github.com>
bors[bot] 1 год назад
Родитель
Сommit
864bce25d6
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

@@ -21,7 +21,7 @@
 //! implementation suitable for single-hart targets, based on disabling interrupts globally.
 //!
 //! It is **unsound** to enable it on multi-hart targets,
-//! 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.