3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

formatting

This commit is contained in:
Jeremy Latt 2012-12-12 23:34:32 -08:00
parent b7ed55d45c
commit 559445d9a8

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 {