Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Conte committed Jan 28, 2020
1 parent 48c3a3e commit c14ecd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unistd.rs
Expand Up @@ -2778,7 +2778,7 @@ mod tests {
thread::spawn(move || {
// set filesystem UID
let _ = setfsuid(nobody.uid);
// try to open the temporaty file should fail with EACCES
// trying to open the temporary file should fail with EACCES
let res = fs::File::open(&temp_path);
assert!(res.is_err());
assert_eq!(res.err().unwrap().kind(), io::ErrorKind::PermissionDenied);
Expand Down

0 comments on commit c14ecd0

Please sign in to comment.