Fixed a ton of typos

This commit is contained in:
VNC
2021-01-05 02:13:15 +01:00
parent d715c0c0dd
commit 6ab300025b
73 changed files with 90 additions and 90 deletions

View File

@@ -52,7 +52,7 @@ bool ThreadPoolService::Init()
// Create tread
auto runnable = New<SimpleRunnable>(true);
runnable->OnWork.Bind(ThreadPool::ThreadProc);
auto thread = Thread::Create(runnable, String::Format(TEXT("Therad Pool {0}"), i));
auto thread = Thread::Create(runnable, String::Format(TEXT("Thread Pool {0}"), i));
if (thread == nullptr)
{
LOG(Error, "Failed to spawn {0} thread in the Thread Pool", i + 1);