From c1d0c11a1b665d647400877a338be39e4f759290 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 25 Feb 2024 14:30:47 +0100 Subject: [PATCH] Fix typo in irq.rs --- src/arch/x86/interrupt/irq.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86/interrupt/irq.rs b/src/arch/x86/interrupt/irq.rs index a22eda3220..ab678b661e 100644 --- a/src/arch/x86/interrupt/irq.rs +++ b/src/arch/x86/interrupt/irq.rs @@ -168,7 +168,7 @@ interrupt_stack!(pit_stack, |_stack| { // Any better way of doing this? timeout::trigger(); - // Switch after a sufficent amount of time since the last switch. + // Switch after a sufficient amount of time since the last switch. context::switch::tick(); });