Skip to content

Commit f7804ef

Browse files
committed
Fix typo
1 parent 2245910 commit f7804ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/unix/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ cfg_has_statx! {{
137137
Ok(_) => {
138138
// We cannot fill `stat64` exhaustively because of private padding fields.
139139
let mut stat: stat64 = mem::zeroed();
140-
// c_ulong`` on gnu-mips, `dev_t` otherwise
140+
// `c_ulong` on gnu-mips, `dev_t` otherwise
141141
stat.st_dev = libc::makedev(buf.stx_dev_major, buf.stx_dev_minor) as _;
142142
stat.st_ino = buf.stx_ino as libc::ino64_t;
143143
stat.st_nlink = buf.stx_nlink as libc::nlink_t;

0 commit comments

Comments
 (0)