Fix some typos

This commit is contained in:
Wang Siyuan 2025-06-12 03:13:04 +00:00 committed by Tate, Hongliang Tian
parent 614ac85bd4
commit b605bed576
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ impl PosixThread {
/// Returns whether the signal is blocked by the thread.
pub(in crate::process) fn has_signal_blocked(&self, signum: SigNum) -> bool {
// FIMXE: Some signals cannot be blocked, even set in sig_mask.
// FIXME: Some signals cannot be blocked, even set in sig_mask.
self.sig_mask.contains(signum, Ordering::Relaxed)
}