Rollup merge of #53756 - dmerejkowsky:fix-comment, r=KodrAus

Fix typo in comment
This commit is contained in:
Pietro Albini 2018-08-30 20:15:43 +02:00 committed by GitHub
commit 11fab7db1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -282,7 +282,7 @@ impl Drop for FileDesc {
// reason for this is that if an error occurs we don't actually know if
// the file descriptor was closed or not, and if we retried (for
// something like EINTR), we might close another valid file descriptor
// (opened after we closed ours.
// opened after we closed ours.
let _ = unsafe { libc::close(self.fd) };
}
}