diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-06-28 17:06:26 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-28 22:29:28 +0200 |
commit | 422166fb80b78c928c5010512a033ca3b53cf495 (patch) | |
tree | 0cf7a15729593d88d074ddd7f2a2347699da994f | |
parent | a8587fbfb9eb441343d81d639dd350154fa2a77c (diff) | |
download | serenity-422166fb80b78c928c5010512a033ca3b53cf495.zip |
Kernel: Fix spelling mistake
-rw-r--r-- | Kernel/Scheduler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |