aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/database/sql/driver
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2019-02-26 15:38:12 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2019-02-26 15:38:12 +0000
commit4fd3c8aad91decbcb204c9c0900da15383945500 (patch)
treee4af19ac0fbd8be46db16d65a1a6b7b4815adf50 /libgo/go/database/sql/driver
parent5c98b419f75a77545abcccb10743829704a4e5d5 (diff)
downloadgcc-4fd3c8aad91decbcb204c9c0900da15383945500.zip
gcc-4fd3c8aad91decbcb204c9c0900da15383945500.tar.gz
gcc-4fd3c8aad91decbcb204c9c0900da15383945500.tar.bz2
libgo: update to Go 1.12 release
Reviewed-on: https://go-review.googlesource.com/c/163742 From-SVN: r269216
Diffstat (limited to 'libgo/go/database/sql/driver')
-rw-r--r--libgo/go/database/sql/driver/driver.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/database/sql/driver/driver.go b/libgo/go/database/sql/driver/driver.go
index 5ff2bc9..ecc6547 100644
--- a/libgo/go/database/sql/driver/driver.go
+++ b/libgo/go/database/sql/driver/driver.go
@@ -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.
//