Whoops, fix documentation

This commit is contained in:
jD91mZM2
2018-01-05 18:51:37 +01:00
parent c102c6b21b
commit d02a393781
+1 -1
View File
@@ -370,7 +370,7 @@ pub fn wifstopped(status: usize) -> bool {
pub fn wifcontinued(status: usize) -> bool {
status == 0xffff
}
/// Nonzero if STATUS indicates termination by a signal.
/// True if STATUS indicates termination by a signal.
#[inline(always)]
pub fn wifsignaled(status: usize) -> bool {
((status & 0x7f) + 1) >> 1 > 0