From 5e4df1ea1b1ade3985a956189eda14612f220886 Mon Sep 17 00:00:00 2001 From: Lolly Date: Tue, 19 Nov 2024 01:37:20 +0800 Subject: [PATCH] chore - Error message typo correction (#751) --- OpenTaiko/src/Common/CSystemError.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenTaiko/src/Common/CSystemError.cs b/OpenTaiko/src/Common/CSystemError.cs index e461eb9c..55fdd4c6 100644 --- a/OpenTaiko/src/Common/CSystemError.cs +++ b/OpenTaiko/src/Common/CSystemError.cs @@ -43,7 +43,7 @@ internal class CSystemError : CStage { case Errno.ENO_SKINNOTFOUND: { ErrorMessage += "No compatible skin was found.\n"; ErrorMessage += "Please ensure that you have a compatible skin within your System folder.\n"; - ErrorMessage += "If you did not installed a skin, please do so through the OpenTaiko Hub (Skins tab).\n"; + ErrorMessage += "If you have not installed a skin, please do so through the OpenTaiko Hub (Skins tab).\n"; ErrorMessage += "If this does not resolve the issue, please try updating your skins through the OpenTaiko Hub.\n"; break; } @@ -67,7 +67,7 @@ internal class CSystemError : CStage { }; // Append a call to contact if necessary - ErrorMessage += "\nIf the error persits, please contact us through the links provided on the OpenTaiko Hub."; + ErrorMessage += "\nIf the error persists, please contact us through the links provided on the OpenTaiko Hub."; } // Constructor