From b5cf8b8af9a8316a32322c8a7dc6d1798490e241 Mon Sep 17 00:00:00 2001
From: Matthew Wells <91291346+richarm4@users.noreply.github.com>
Date: Thu, 17 Nov 2022 09:13:37 -0800
Subject: [PATCH] Capitalization to be consistent (#3860)

Thread ID Register, Floating-point Control Register, and Floating-point Status Register all had Register capitalized, so the Register in Processor State register should be capitalized.
---
 Ryujinx.Cpu/IExecutionContext.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Ryujinx.Cpu/IExecutionContext.cs b/Ryujinx.Cpu/IExecutionContext.cs
index 3455b5c1e9..c382108000 100644
--- a/Ryujinx.Cpu/IExecutionContext.cs
+++ b/Ryujinx.Cpu/IExecutionContext.cs
@@ -27,7 +27,7 @@ namespace Ryujinx.Cpu
         long TpidrroEl0 { get; set; }
 
         /// <summary>
-        /// Processor State register.
+        /// Processor State Register.
         /// </summary>
         uint Pstate { get; set; }
 
@@ -109,4 +109,4 @@ namespace Ryujinx.Cpu
         /// </remarks>
         void StopRunning();
     }
-}
\ No newline at end of file
+}