Kernel: Fix spelling mistake

This commit is contained in:
Gunnar Beutner 2021-06-28 17:06:26 +02:00 committed by Andreas Kling
commit 422166fb80
Notes: sideshowbarker 2024-07-18 11:22:54 +09:00

View file

@ -583,7 +583,7 @@ void Scheduler::dump_scheduler_state()
bool Scheduler::is_initialized() 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; return Processor::idle_thread() != nullptr;
} }