From 6210a28a9e60b2079847e824832e9fed8f504307 Mon Sep 17 00:00:00 2001 From: achmizs Date: Mon, 11 Jan 2016 14:00:22 -0500 Subject: [PATCH] Correct an outdated comment --- IRCClient/IRCClientSession.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRCClient/IRCClientSession.m b/IRCClient/IRCClientSession.m index 1d275e5..90c119a 100644 --- a/IRCClient/IRCClientSession.m +++ b/IRCClient/IRCClientSession.m @@ -343,8 +343,8 @@ static NSDictionary* ircNumericCodeList; if ([_nickname isEqualToData:nickOnly]) { - // We just joined a channel; allocate an IRCClientChannel object and send it - // to the main thread. + // We just joined a channel; allocate an IRCClientChannel object and + // add it to our channels list. IRCClientChannel* newChannel = [[IRCClientChannel alloc] initWithName:channelName andIRCSession:_irc_session]; _channels[channelName] = newChannel;