diff --git a/DiscordRPC.Example/Program.cs b/DiscordRPC.Example/Program.cs index 84b13589..1b92ac7b 100644 --- a/DiscordRPC.Example/Program.cs +++ b/DiscordRPC.Example/Program.cs @@ -551,7 +551,7 @@ static void ExecuteCommand(string word) break; default: - Console.WriteLine("Unkown Command '{0}'. Try 'help' for a list of commands", command); + Console.WriteLine("Unknown Command '{0}'. Try 'help' for a list of commands", command); break; } diff --git a/DiscordRPC/Message/ErrorMessage.cs b/DiscordRPC/Message/ErrorMessage.cs index b703b192..f8877c92 100644 --- a/DiscordRPC/Message/ErrorMessage.cs +++ b/DiscordRPC/Message/ErrorMessage.cs @@ -46,8 +46,8 @@ public enum ErrorCode NotImplemented = 10, //Discord RPC error codes - ///Unkown Discord error - UnkownError = 1000, + ///Unknown Discord error + UnknownError = 1000, ///Invalid Payload received InvalidPayload = 4000, diff --git a/DiscordRPC/RPC/RpcConnection.cs b/DiscordRPC/RPC/RpcConnection.cs index fd8ea6a4..5b351f40 100644 --- a/DiscordRPC/RPC/RpcConnection.cs +++ b/DiscordRPC/RPC/RpcConnection.cs @@ -559,7 +559,7 @@ private void ProcessFrame(EventPayload response) //we have no idea what we were sent default: - Logger.Error("Unkown frame was received! {0}", response.Command); + Logger.Error("Unknown frame was received! {0}", response.Command); return; } return; @@ -591,7 +591,7 @@ private void ProcessDispatch(EventPayload response) EnqueueMessage(request); break; - //Unkown dispatch event received. We should just ignore it. + //Unknown dispatch event received. We should just ignore it. default: Logger.Warning("Ignoring {0}", response.Event.Value); break; diff --git a/DiscordRPC/Registry/UriScheme.cs b/DiscordRPC/Registry/UriScheme.cs index 011c2573..2ad80234 100644 --- a/DiscordRPC/Registry/UriScheme.cs +++ b/DiscordRPC/Registry/UriScheme.cs @@ -84,7 +84,7 @@ public bool RegisterUriScheme() #endif default: - _logger.Error("Unkown Platform: {0}", Environment.OSVersion.Platform); + _logger.Error("Unknown Platform: {0}", Environment.OSVersion.Platform); throw new PlatformNotSupportedException("Platform does not support registration."); } diff --git a/Unity Example/Assets/Discord RPC/Plugins/DiscordRPC.XML b/Unity Example/Assets/Discord RPC/Plugins/DiscordRPC.XML index dec5ba7a..b3d28858 100644 --- a/Unity Example/Assets/Discord RPC/Plugins/DiscordRPC.XML +++ b/Unity Example/Assets/Discord RPC/Plugins/DiscordRPC.XML @@ -1396,8 +1396,8 @@ The functionality was not yet implemented - - Unkown Discord error + + Unknown Discord error Invalid Payload received