]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.12] database/sql/driver: fix typo
authorZhou Peng <p@ctriple.cn>
Fri, 15 Feb 2019 08:41:33 +0000 (16:41 +0800)
committerBrad Fitzpatrick <bradfitz@golang.org>
Sun, 17 Feb 2019 15:20:06 +0000 (15:20 +0000)
Change-Id: I6e7035db4b3e2a09e5655eb7646eea9d99fb7118
Reviewed-on: https://go-review.googlesource.com/c/162917
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
(cherry picked from commit 4c89a10fb9f4fcb2ed01b6e7325e53b4bc487fc2)
Reviewed-on: https://go-review.googlesource.com/c/162889
Reviewed-by: Zhou Peng <p@ctriple.cn>
src/database/sql/driver/driver.go

index 5ff2bc97350e9c8225c48158e87917020e844f5e..ecc6547bf371221cf9ebb0c4f1963602ea29f076 100644 (file)
@@ -137,7 +137,7 @@ type Pinger interface {
 
 // 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,
 // and then close the statement.
 //