formatting

This commit is contained in:
Jeremy Latt
2012-12-12 23:34:32 -08:00
parent b7ed55d45c
commit 559445d9a8
+2 -1
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 {