From 07c4ea2de0fa9246bec3c1ed9f7c2c57e4b25893 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 19 Dec 2025 10:02:27 -0800 Subject: [PATCH] all comments are notes, and use doc comments where possible --- lib/std/os/windows.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig index 125b43f736..2015759754 100644 --- a/lib/std/os/windows.zig +++ b/lib/std/os/windows.zig @@ -215,10 +215,10 @@ pub const FILE = struct { AccessFlags: ACCESS_MASK, }; - // Note: This is not separated into RENAME_INFORMATION and RENAME_INFORMATION_EX because - // the only difference is the `Flags` type (BOOLEAN before _EX, ULONG in the _EX), - // which doesn't affect the struct layout--the offset of RootDirectory is the same - // regardless. + /// This is not separated into RENAME_INFORMATION and RENAME_INFORMATION_EX because + /// the only difference is the `Flags` type (BOOLEAN before _EX, ULONG in the _EX), + /// which doesn't affect the struct layout--the offset of RootDirectory is the same + /// regardless. pub const RENAME_INFORMATION = extern struct { Flags: FLAGS, RootDirectory: ?HANDLE,