Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DiscordRPC.Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
4 changes: 2 additions & 2 deletions DiscordRPC/Message/ErrorMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public enum ErrorCode
NotImplemented = 10,

//Discord RPC error codes
///<summary>Unkown Discord error</summary>
UnkownError = 1000,
///<summary>Unknown Discord error</summary>
UnknownError = 1000,

///<summary>Invalid Payload received</summary>
InvalidPayload = 4000,
Expand Down
4 changes: 2 additions & 2 deletions DiscordRPC/RPC/RpcConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion DiscordRPC/Registry/UriScheme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
}

Expand Down
4 changes: 2 additions & 2 deletions Unity Example/Assets/Discord RPC/Plugins/DiscordRPC.XML

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.