Fix clear identifier typos

This commit is contained in:
Joseph Madamba
2021-12-09 21:04:31 -08:00
parent 55768d8c11
commit 98524d60a4
19 changed files with 45 additions and 45 deletions

View File

@ -7,8 +7,8 @@ namespace osu.Game.Online.API
{
public class APIException : InvalidOperationException
{
public APIException(string messsage, Exception innerException)
: base(messsage, innerException)
public APIException(string message, Exception innerException)
: base(message, innerException)
{
}
}