diff --git a/osu.Game/Online/Chat/Channel.cs b/osu.Game/Online/Chat/Channel.cs
index 1196738bd7..b7893ed9ff 100644
--- a/osu.Game/Online/Chat/Channel.cs
+++ b/osu.Game/Online/Chat/Channel.cs
@@ -17,7 +17,7 @@ namespace osu.Game.Online.Chat
public readonly int MAX_HISTORY = 300;
///
- /// Contains every joined user except yourself
+ /// Contains every joined user except the current logged in user.
///
public readonly ObservableCollection JoinedUsers = new ObservableCollection();
public readonly SortedList Messages = new SortedList(Comparer.Default);
@@ -52,7 +52,7 @@ namespace osu.Game.Online.Chat
///
/// Contructs a private channel
- /// TODO this class needs to be serialized from something like channels/private, instead of creating from a contructor
+ /// TODO this class needs to be serialized from something like channels/private, instead of creating from the contructor
///
/// The user
public Channel(User user)
@@ -62,10 +62,7 @@ namespace osu.Game.Online.Chat
Id = user.Id;
JoinedUsers.Add(user);
}
-
-
-
-
+
public void AddLocalEcho(LocalEchoMessage message)
{
pendingMessages.Add(message);