From 8be01d690fed6a2bd6d1cad7819c4fe00cb3611e Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Fri, 17 Jan 2020 17:38:07 -0600 Subject: [PATCH] Make Host comment more precise --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 628deed8..9876ac94 100644 --- a/config.go +++ b/config.go @@ -29,7 +29,7 @@ type ValidateConnectFunc func(ctx context.Context, pgconn *PgConn) error // Config is the settings used to establish a connection to a PostgreSQL server. It must be created by ParseConfig and // then it can be modified. A manually initialized Config will cause ConnectConfig to panic. type Config struct { - Host string // host (e.g. localhost) or path to unix domain socket directory (e.g. /private/tmp) + Host string // host (e.g. localhost) or absolute path to unix domain socket directory (e.g. /private/tmp) Port uint16 Database string User string