Fix comment for Conn struct.

This commit is contained in:
Alex Bramley 2011-08-21 13:57:47 +01:00
parent 820f0cb14b
commit fb91caeccf
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ const (
second = int64(1e9)
)
// An IRC connection is represented by this struct. Once connected, any errors
// encountered are piped down *Conn.Err; this channel is closed on disconnect.
// An IRC connection is represented by this struct.
// Once connected, any errors encountered are piped down *Conn.Err.
type Conn struct {
// Connection Hostname and Nickname
Host string