Selaa lähdekoodia

Kernel: Fix typo

Ben Wiederhake 4 vuotta sitten
vanhempi
commit
b5e5e43d4b
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      Kernel/Thread.cpp

+ 1 - 1
Kernel/Thread.cpp

@@ -248,7 +248,7 @@ void Thread::die_if_needed()
     ScopedCritical critical;
 
     // Flag a context switch. Because we're in a critical section,
-    // Scheduler::yield will actually only mark a pending scontext switch
+    // Scheduler::yield will actually only mark a pending context switch
     // Simply leaving the critical section would not necessarily trigger
     // a switch.
     Scheduler::yield();