Fixed small typo

This commit is contained in:
MaxXor 2015-05-29 23:39:22 +02:00
parent 5c6f6d89d7
commit 971708f17b
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ private void OnClientRead(IPacket packet)
public bool Equals(Client c)
{
return this.EndPoint.Port == c.EndPoint.Port; // this port is always unqiue for each client
return this.EndPoint.Port == c.EndPoint.Port; // this port is always unique for each client
}
private void OnClientWrite(IPacket packet, long length, byte[] rawData)