From a5603c35dff13715ea094351ccecc08ac1a334c7 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Mon, 17 May 2021 19:27:17 +0300 Subject: [PATCH] Kernel: Fix spelling mistake in HPETComparator::try_to_set_frequency --- Kernel/Time/HPETComparator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Time/HPETComparator.cpp b/Kernel/Time/HPETComparator.cpp index 7b974e554f..8292719c31 100644 --- a/Kernel/Time/HPETComparator.cpp +++ b/Kernel/Time/HPETComparator.cpp @@ -83,7 +83,7 @@ bool HPETComparator::try_to_set_frequency(size_t frequency) { InterruptDisabler disabler; if (!is_capable_of_frequency(frequency)) { - dbgln("HPETComparator: not cable of frequency: {}", frequency); + dbgln("HPETComparator: not capable of frequency: {}", frequency); return false; }