From 6da4853360d731b89ff4ee7a075d634c1998ea86 Mon Sep 17 00:00:00 2001
From: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Tue, 11 Jul 2023 09:56:36 +0900
Subject: [PATCH] kernel: fix typo in recorder.cpp (#6686)

---
 src/core/hle/kernel/ipc_debugger/recorder.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/core/hle/kernel/ipc_debugger/recorder.cpp b/src/core/hle/kernel/ipc_debugger/recorder.cpp
index 1aad9fe3d..546b85034 100644
--- a/src/core/hle/kernel/ipc_debugger/recorder.cpp
+++ b/src/core/hle/kernel/ipc_debugger/recorder.cpp
@@ -74,7 +74,7 @@ void Recorder::SetRequestInfo(const std::shared_ptr<Kernel::Thread>& client_thre
     const u32 thread_id = client_thread->GetThreadId();
     if (!record_map.count(thread_id)) {
         // This is possible when the recorder is enabled after application started
-        LOG_ERROR(Kernel, "No request is assoicated with the thread");
+        LOG_ERROR(Kernel, "No request is associated with the thread");
         return;
     }
 
@@ -113,7 +113,7 @@ void Recorder::SetReplyInfo(const std::shared_ptr<Kernel::Thread>& client_thread
     const u32 thread_id = client_thread->GetThreadId();
     if (!record_map.count(thread_id)) {
         // This is possible when the recorder is enabled after application started
-        LOG_ERROR(Kernel, "No request is assoicated with the thread");
+        LOG_ERROR(Kernel, "No request is associated with the thread");
         return;
     }
 
@@ -133,7 +133,7 @@ void Recorder::SetHLEUnimplemented(const std::shared_ptr<Kernel::Thread>& client
     const u32 thread_id = client_thread->GetThreadId();
     if (!record_map.count(thread_id)) {
         // This is possible when the recorder is enabled after application started
-        LOG_ERROR(Kernel, "No request is assoicated with the thread");
+        LOG_ERROR(Kernel, "No request is associated with the thread");
         return;
     }