1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

Kernel: Fix spelling mistake in HPETComparator::try_to_set_frequency

This commit is contained in:
Idan Horowitz 2021-05-17 19:27:17 +03:00 committed by Andreas Kling
parent 0ac3317764
commit a5603c35df

View file

@ -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;
}