summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore
diff options
context:
space:
mode:
authormjz19910 <matthias291999@gmail.com>2022-01-06 07:07:15 -0700
committerLinus Groh <mail@linusgroh.de>2022-01-07 10:56:59 +0100
commit3102d8e160bd61181dce395b425aea99e8381632 (patch)
treea71464b934ddd5a302c292bac45767e18a9bc217 /Userland/Libraries/LibCore
parent6bf91d00eff87b8904239db5126165485741d731 (diff)
downloadserenity-3102d8e160bd61181dce395b425aea99e8381632.zip
Everywhere: Fix many spelling errors
Diffstat (limited to 'Userland/Libraries/LibCore')
-rw-r--r--Userland/Libraries/LibCore/EventLoop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp
index 09fc1394c8..66ce7efe87 100644
--- a/Userland/Libraries/LibCore/EventLoop.cpp
+++ b/Userland/Libraries/LibCore/EventLoop.cpp
@@ -435,7 +435,7 @@ size_t EventLoop::pump(WaitMode mode)
void EventLoop::post_event(Object& receiver, NonnullOwnPtr<Event>&& event)
{
Threading::MutexLocker lock(m_private->lock);
- dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::post_event: ({}) << receivier={}, event={}", m_queued_events.size(), receiver, event);
+ dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::post_event: ({}) << receiver={}, event={}", m_queued_events.size(), receiver, event);
m_queued_events.empend(receiver, move(event));
}
@@ -522,7 +522,7 @@ void EventLoop::handle_signal(int signo)
VERIFY(signo != 0);
// We MUST check if the current pid still matches, because there
// is a window between fork() and exec() where a signal delivered
- // to our fork could be inadvertedly routed to the parent process!
+ // to our fork could be inadvertently routed to the parent process!
if (getpid() == s_pid) {
int nwritten = write(s_wake_pipe_fds[1], &signo, sizeof(signo));
if (nwritten < 0) {