1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-07-10 23:39:23 +00:00

correct syntax errors from updating go to 4450:dd9bae5c7eac

This commit is contained in:
Alex Bramley 2009-12-17 21:14:01 +00:00
parent 7191dd9177
commit 6a8c1a13b2
3 changed files with 6 additions and 6 deletions

View file

@ -83,7 +83,7 @@ func (conn *Conn) Connect(host, pass string) os.Error {
conn.io = bufio.NewReadWriter(
bufio.NewReader(conn.sock),
bufio.NewWriter(conn.sock)
bufio.NewWriter(conn.sock),
);
go conn.send();
go conn.recv();