From f65776f08407398d995699b7f3c76fcc1da2ead0 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Fri, 25 Aug 2017 13:31:50 -0500 Subject: [PATCH] Fix typo --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 2de6c705..99b4c05f 100644 --- a/conn.go +++ b/conn.go @@ -190,7 +190,7 @@ var ErrDeadConn = errors.New("conn is dead") var ErrTLSRefused = errors.New("server refused TLS connection") // ErrConnBusy occurs when the connection is busy (for example, in the middle of -// reading query results) and another action is attempts. +// reading query results) and another action is attempted. var ErrConnBusy = errors.New("conn is busy") // ErrInvalidLogLevel occurs on attempt to set an invalid log level.