database/sql/driver: fix typo

Change-Id: I6e7035db4b3e2a09e5655eb7646eea9d99fb7118
Reviewed-on: https://go-review.googlesource.com/c/162917
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Zhou Peng 2019-02-15 16:41:33 +08:00 committed by Brad Fitzpatrick
parent 7cf31d8f41
commit 4c89a10fb9
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ type Pinger interface {
// Execer is an optional interface that may be implemented by a Conn. // Execer is an optional interface that may be implemented by a Conn.
// //
// If a Conn implements neither ExecerContext nor Execer Execer, // If a Conn implements neither ExecerContext nor Execer,
// the sql package's DB.Exec will first prepare a query, execute the statement, // the sql package's DB.Exec will first prepare a query, execute the statement,
// and then close the statement. // and then close the statement.
// //