diff --git a/library/std/src/sys/unix/process/process_common/tests.rs b/library/std/src/sys/unix/process/process_common/tests.rs index 082c564700f08..4e41efc90962a 100644 --- a/library/std/src/sys/unix/process/process_common/tests.rs +++ b/library/std/src/sys/unix/process/process_common/tests.rs @@ -175,7 +175,7 @@ fn unix_exit_statuses() { use crate::process::*; for exit_code in 0..=0xff { - // TODO impl From for ExitStatus and then test that here too; + // FIXME impl From for ExitStatus and then test that here too; // the two ExitStatus values should be the same let raw_wait_status = exit_code << 8; let exit_status = ExitStatus::from_raw(raw_wait_status);