Skip to content

Commit 83fb4c4

Browse files
committed
doc comment cleanup
1 parent 3647c34 commit 83fb4c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sys/unix/fs/dir_fd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ mod remove_dir_all_xat {
245245
let mut stat = unsafe { mem::zeroed() };
246246
cvt(unsafe { fstat(fd.as_raw_fd(), &mut stat) })?;
247247
// Make sure that the reopened directory has the same inode as when we visited it descending
248-
// the directory tree. More detailed risk analysis TBD.
248+
// the directory tree.
249249
if self.dev != stat.st_dev || self.ino != stat.st_ino {
250250
return Err(io::Error::new(
251251
io::ErrorKind::Uncategorized,

0 commit comments

Comments
 (0)