diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/inspircd_memory_functions.cpp | 2 | ||||
-rw-r--r-- | win/inspircd_win32wrapper.h | 2 | ||||
-rw-r--r-- | win/win32service.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/win/inspircd_memory_functions.cpp b/win/inspircd_memory_functions.cpp index f118a86c4..134c2136f 100644 --- a/win/inspircd_memory_functions.cpp +++ b/win/inspircd_memory_functions.cpp @@ -32,7 +32,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. diff --git a/win/inspircd_win32wrapper.h b/win/inspircd_win32wrapper.h index 7ce23f7a7..99edafc42 100644 --- a/win/inspircd_win32wrapper.h +++ b/win/inspircd_win32wrapper.h @@ -50,7 +50,7 @@ #define VC_EXTRALEAN #define WIN32_LEAN_AND_MEAN -/* Macros for exporting symbols - dependant on what is being compiled */ +/* Macros for exporting symbols - dependent on what is being compiled */ #ifdef DLL_BUILD #define CoreExport __declspec(dllimport) diff --git a/win/win32service.cpp b/win/win32service.cpp index 4c2545b1e..46e9d3516 100644 --- a/win/win32service.cpp +++ b/win/win32service.cpp @@ -42,7 +42,7 @@ struct Service_Data { static Service_Data g_ServiceData; /** The main part of inspircd runs within this thread function. This allows the service part to run - * seperately on its own and to be able to kill the worker thread when its time to quit. + * separately on its own and to be able to kill the worker thread when its time to quit. */ DWORD WINAPI WorkerThread(LPVOID param) { |