1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-09-06 00:43:20 +00:00

Run gofmt over code, it's been a while.

This commit is contained in:
Alex Bramley 2011-09-12 23:25:09 +01:00
parent 18c20080e8
commit c400a2141a
7 changed files with 53 additions and 54 deletions

View file

@ -40,7 +40,7 @@ func main() {
}
// no point in sending empty lines down the channel
if len(s) > 2 {
in <- s[0:len(s)-1]
in <- s[0 : len(s)-1]
}
}
}()