aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/database/sql/driver
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2013-11-01 11:30:30 +1100
committerBrad Fitzpatrick <bradfitz@golang.org>2013-11-01 11:30:30 +1100
commit6d10afd9e566ca520aef916bca2a6a75b24fd01f (patch)
tree47c8386248f994a56e62bb0dce2d9f0c361e9fe1 /src/pkg/database/sql/driver
parent89f01489554257e297aa787c9d43d9e894729d21 (diff)
downloadgo-6d10afd9e566ca520aef916bca2a6a75b24fd01f.tar.xz
[release-branch.go1.2] database/sql: Fix typos in doc
««« CL 17590043 / fb5224487f1b database/sql: Fix typos in doc R=golang-dev CC=bradfitz, golang-dev https://golang.org/cl/17590043 »»» R=golang-dev CC=golang-dev https://golang.org/cl/20150046
Diffstat (limited to 'src/pkg/database/sql/driver')
-rw-r--r--src/pkg/database/sql/driver/driver.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/database/sql/driver/driver.go b/src/pkg/database/sql/driver/driver.go
index d7ca94f780..0828e63c65 100644
--- a/src/pkg/database/sql/driver/driver.go
+++ b/src/pkg/database/sql/driver/driver.go
@@ -140,8 +140,8 @@ type Stmt interface {
}
// ColumnConverter may be optionally implemented by Stmt if the
-// the statement is aware of its own columns' types and can
-// convert from any type to a driver Value.
+// statement is aware of its own columns' types and can convert from
+// any type to a driver Value.
type ColumnConverter interface {
// ColumnConverter returns a ValueConverter for the provided
// column index. If the type of a specific column isn't known