diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 19:32:45 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 19:32:45 +0000 |
commit | b84b1d8166b07b80429c6830e0151e0c871c2cfc (patch) | |
tree | c73bdb9d0f345705f098fcc0c0978458b2ef1b48 /src/win32 | |
parent | 8e2fa4acdbc24d0a629b737d5dd42a31a543016d (diff) |
Misc grammar fixes.
Diffstat (limited to 'src/win32')
-rw-r--r-- | src/win32/win32_memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/win32_memory.cpp b/src/win32/win32_memory.cpp index db7a46eb8..2e25e8681 100644 --- a/src/win32/win32_memory.cpp +++ b/src/win32/win32_memory.cpp @@ -22,7 +22,7 @@ * whereas on POSIX systems, shared objects loaded into an executable share * the executable's heap. This means that if we pass an arbitrary pointer to * a windows DLL which is not allocated in that dll, without some form of - * marshalling, we get a page fault. To fix this, these overrided operators + * marshalling, we get a page fault. To fix this, these overridden operators * new and delete use the windows HeapAlloc and HeapFree functions to claim * memory from the windows global heap. This makes windows 'act like' POSIX * when it comes to memory usage between dlls and exes. |