Skip to content

Commit 4654f81

Browse files
committed
Fix typo
1 parent 216c582 commit 4654f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/task.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ void yield(void)
321321
if (unlikely(!kcb || !kcb->task_current || !kcb->task_current->data))
322322
return;
323323

324-
/* HAL context switching is used for ppreemptive scheduling. */
324+
/* HAL context switching is used for preemptive scheduling. */
325325
if (hal_context_save(((tcb_t *) kcb->task_current->data)->context) != 0)
326326
return;
327327

0 commit comments

Comments
 (0)