Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
squell authored Sep 3, 2024
1 parent 6d50777 commit f4e6439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl FileCloser {

fn close_range(min_fd: c_uint, max_fd: c_uint) -> io::Result<()> {
if min_fd <= max_fd {
// SAFETY: this function is safe to call with this arguments
// SAFETY: this function is safe to call with these arguments
cerr(unsafe { libc::close_range(min_fd, max_fd, 0) })?;
}

Expand Down

0 comments on commit f4e6439

Please sign in to comment.