Skip to content

Commit

Permalink
chore - Error message typo correction (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkdLolly authored Nov 18, 2024
1 parent da8dc1c commit 5e4df1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenTaiko/src/Common/CSystemError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void LoadError(Errno errno) {
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;
}
Expand All @@ -67,7 +67,7 @@ public void LoadError(Errno errno) {
};

// 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
Expand Down

0 comments on commit 5e4df1e

Please sign in to comment.