From 422166fb80b78c928c5010512a033ca3b53cf495 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 28 Jun 2021 17:06:26 +0200 Subject: [PATCH] Kernel: Fix spelling mistake --- Kernel/Scheduler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Scheduler.cpp b/Kernel/Scheduler.cpp index 30cb3de59f..e58b572d9a 100644 --- a/Kernel/Scheduler.cpp +++ b/Kernel/Scheduler.cpp @@ -583,7 +583,7 @@ void Scheduler::dump_scheduler_state() bool Scheduler::is_initialized() { - // The scheduler is initalized iff the idle thread exists + // The scheduler is initialized iff the idle thread exists return Processor::idle_thread() != nullptr; }