formatting

This commit is contained in:
Jeremy Latt 2012-12-12 23:34:32 -08:00
parent b7ed55d45c
commit 559445d9a8
1 changed files with 2 additions and 1 deletions

View File

@ -107,7 +107,8 @@ func RplNoTopic(channel *Channel) Reply {
}
func RplTopic(channel *Channel) Reply {
return NewNumericReply(channel.server, RPL_TOPIC, fmt.Sprintf("%s :%s", channel.name, channel.topic))
return NewNumericReply(channel.server, RPL_TOPIC,
fmt.Sprintf("%s :%s", channel.name, channel.topic))
}
func RplInvitingMsg(channel *Channel, invitee *Client) Reply {