From 33fb73b8ab129d77d3244776e6bd644d22469102 Mon Sep 17 00:00:00 2001 From: Andy Walker Date: Wed, 24 Sep 2014 18:53:07 -0400 Subject: [PATCH] name consistency --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 0990d9e4..5000543b 100644 --- a/conn.go +++ b/conn.go @@ -28,7 +28,7 @@ type ConnConfig struct { Password string TLSConfig *tls.Config // config for TLS connection -- nil disables TLS Logger Logger - KeepAlive uint16 // keep-alive period for the connetion (0 disables KeepAlive) + KeepAlive uint16 // keep-alive period for the connetion (0 disables keep-alive) } // Conn is a PostgreSQL connection handle. It is not safe for concurrent usage.