1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:08:13 +00:00

Everywhere: Fix typos

This commit is contained in:
Linus Groh 2021-01-22 17:42:36 +01:00 committed by Andreas Kling
parent 7ad31651bd
commit 421587c15c
12 changed files with 16 additions and 16 deletions

View file

@ -74,7 +74,7 @@ void WaitQueue::wake_one()
u32 WaitQueue::wake_n(u32 wake_count)
{
if (wake_count == 0)
return 0; // should we assert instaed?
return 0; // should we assert instead?
ScopedSpinLock lock(m_lock);
#ifdef WAITQUEUE_DEBUG
dbg() << "WaitQueue @ " << this << ": wake_n(" << wake_count << ")";