diff --git a/connection.go b/connection.go index e4c1c615..252852e8 100644 --- a/connection.go +++ b/connection.go @@ -532,7 +532,7 @@ func (c *Connection) reader(r io.Reader) { case c.deadlines <- conn: default: // On c.Close() c.heartbeater() might exit just before c.deadlines <- conn is called. - // Which result in this goroutine being stuck forever. + // Which results in this goroutine being stuck forever. } } }