summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorInspIRCd Robot <noreply@inspircd.org>2020-04-21 06:34:17 +0000
committerMatt Schatz <genius3000@g3k.solutions>2020-04-21 00:52:12 -0600
commit4f9abe96a4301a740d4a5fd7932550d88d60a3fc (patch)
treeeafd249fbf0c3ad4c631146446d5d953508e88b4 /win
parent43d0efaa2195c445ae7cc130d235781506758a9d (diff)
Fixes by misspell-fixer
Diffstat (limited to 'win')
-rw-r--r--win/inspircd_memory_functions.cpp2
-rw-r--r--win/inspircd_win32wrapper.h2
-rw-r--r--win/win32service.cpp2
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)
{