From 73ba00e942e389de0338bade1da62d94aabf782d Mon Sep 17 00:00:00 2001 From: Dio Gado Date: Sat, 20 Jun 2020 17:08:33 -0400 Subject: [PATCH] Fix typo in comment --- connector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector.go b/connector.go index 6a0ee7fc..d7d47261 100644 --- a/connector.go +++ b/connector.go @@ -27,7 +27,7 @@ func (c *Connector) Connect(ctx context.Context) (driver.Conn, error) { return c.open(ctx) } -// Driver returnst the underlying driver of this Connector. +// Driver returns the underlying driver of this Connector. func (c *Connector) Driver() driver.Driver { return &Driver{} }