fix typos caught by codespell

This commit is contained in:
Tshepang Lekhonkhobe
2015-05-06 01:49:07 +02:00
parent 252b5444da
commit 8227db86eb
6 changed files with 8 additions and 8 deletions

View File

@@ -328,7 +328,7 @@ impl Process {
}) {
Ok(0) => None,
Ok(n) if n == self.pid => Some(translate_status(status)),
Ok(n) => panic!("unkown pid: {}", n),
Ok(n) => panic!("unknown pid: {}", n),
Err(e) => panic!("unknown waitpid error: {}", e),
}
}