1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-07-05 21:09:24 +00:00

Turns out gofmt isn't big on spaces sometimes.

This commit is contained in:
Alex Bramley 2011-09-29 22:58:04 +01:00
parent de66051d07
commit 3e1b2c0f81
3 changed files with 8 additions and 8 deletions

View file

@ -97,7 +97,7 @@ func (conn *Conn) h_JOIN(line *Line) {
// first we've seen of this channel, so should be us joining it
// NOTE this will also take care of n == nil && ch == nil
if n != conn.Me {
logging.Warn("irc.JOIN(): JOIN to unknown channel %s recieved " +
logging.Warn("irc.JOIN(): JOIN to unknown channel %s recieved "+
"from (non-me) nick %s", line.Args[0], line.Nick)
return
}