diff options
author | Linus Groh <mail@linusgroh.de> | 2020-10-02 22:14:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-03 12:36:49 +0200 |
commit | bcfc6f0c57f9d4ce4343cbb6ee0f0ab8de56c789 (patch) | |
tree | d3e16e6361f4693ae5362c10da05bc6a4ad30190 /Kernel/Scheduler.cpp | |
parent | 4e86c34ef0d1d227309f8e8d22be5ea737830c24 (diff) | |
download | serenity-bcfc6f0c57f9d4ce4343cbb6ee0f0ab8de56c789.zip |
Everywhere: Fix more typos
Diffstat (limited to 'Kernel/Scheduler.cpp')
-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 2a48537b59..c510743b6b 100644 --- a/Kernel/Scheduler.cpp +++ b/Kernel/Scheduler.cpp @@ -699,7 +699,7 @@ void Scheduler::enter_current(Thread& prev_thread) void Scheduler::leave_on_first_switch(u32 flags) { - // This is called when a thread is swiched into for the first time. + // This is called when a thread is switched into for the first time. // At this point, enter_current has already be called, but because // Scheduler::context_switch is not in the call stack we need to // clean up and release locks manually here |