Skip to content

Commit f4e6439

Browse files
authored
fix spelling
1 parent 6d50777 commit f4e6439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/system/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl FileCloser {
108108

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

0 commit comments

Comments
 (0)