소스 검색

Merge #131

131: fix a typo r=romancardenas a=OccupyMars2025



Co-authored-by: OccupyMars2025 <31559413+OccupyMars2025@users.noreply.github.com>
bors[bot] 1 년 전
부모
커밋
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.