From de29ab2a0c0ed21d1eea70a4bc022f4cb83f4c7e Mon Sep 17 00:00:00 2001 From: Lukasz Czerniawski Date: Fri, 2 Aug 2024 17:59:53 +0200 Subject: [PATCH] Fix comment --- ext/fs/std_fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/fs/std_fs.rs b/ext/fs/std_fs.rs index 8a8671f28d..20d373c084 100644 --- a/ext/fs/std_fs.rs +++ b/ext/fs/std_fs.rs @@ -857,7 +857,7 @@ fn stat_extra( // If error more data is returned, then it means that the buffer is too small to get full filename information // to have that we should retry. However, since we only use BasicInformation and StandardInformation, it is fine to ignore it // since struct is populated with other data anyway. - /// https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/nf-ntifs-ntqueryinformationfile#remarksdd + // https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/nf-ntifs-ntqueryinformationfile#remarksdd if converted_status != ERROR_MORE_DATA { return Err(converted_status as NTSTATUS); }