Skip to content

Commit 4172c29

Browse files
authored
Fix typo (#14149)
1 parent aadd1b2 commit 4172c29

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/std/os/windows.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,9 +1493,9 @@ pub fn VirtualFree(lpAddress: ?LPVOID, dwSize: usize, dwFreeType: DWORD) void {
14931493
assert(kernel32.VirtualFree(lpAddress, dwSize, dwFreeType) != 0);
14941494
}
14951495

1496-
pub const VirtualQuerryError = error{Unexpected};
1496+
pub const VirtualQueryError = error{Unexpected};
14971497

1498-
pub fn VirtualQuery(lpAddress: ?LPVOID, lpBuffer: PMEMORY_BASIC_INFORMATION, dwLength: SIZE_T) VirtualQuerryError!SIZE_T {
1498+
pub fn VirtualQuery(lpAddress: ?LPVOID, lpBuffer: PMEMORY_BASIC_INFORMATION, dwLength: SIZE_T) VirtualQueryError!SIZE_T {
14991499
const rc = kernel32.VirtualQuery(lpAddress, lpBuffer, dwLength);
15001500
if (rc == 0) {
15011501
switch (kernel32.GetLastError()) {

0 commit comments

Comments
 (0)