From 0bf56e6b406893c6be10a79f62b4d7e1ad0ad480 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Sun, 24 Apr 2022 01:46:35 +0200 Subject: [PATCH] LibCore: Fix typo in `EventLoop` comment --- Userland/Libraries/LibCore/EventLoop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCore/EventLoop.h b/Userland/Libraries/LibCore/EventLoop.h index 6e625b0d1d..64350b99d8 100644 --- a/Userland/Libraries/LibCore/EventLoop.h +++ b/Userland/Libraries/LibCore/EventLoop.h @@ -51,7 +51,7 @@ public: PollForEvents, }; - // processe events, generally called by exec() in a loop. + // process events, generally called by exec() in a loop. // this should really only be used for integrating with other event loops size_t pump(WaitMode = WaitMode::WaitForEvents);