aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql
diff options
context:
space:
mode:
authorKevin Burke <kev@inburke.com>2017-02-08 15:31:33 -0800
committerIan Lance Taylor <iant@golang.org>2017-02-09 01:08:08 +0000
commitc57d91e34cf9a9d6d39b75e2f401bdf6a27447aa (patch)
tree58c7cefb901fe54dcbf6561c1429099c3272b209 /src/database/sql
parent27520cc4c5deaa14e46cb97a382150e0f313b099 (diff)
downloadgo-c57d91e34cf9a9d6d39b75e2f401bdf6a27447aa.tar.xz
database/sql: fix typo
Change-Id: I09fdcebb939417f18af09ed57f24460724cab64f Reviewed-on: https://go-review.googlesource.com/36632 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/database/sql')
-rw-r--r--src/database/sql/sql.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/sql.go b/src/database/sql/sql.go
index 57d4782c89..ce8bb7c928 100644
--- a/src/database/sql/sql.go
+++ b/src/database/sql/sql.go
@@ -2084,7 +2084,7 @@ type Rows struct {
lasterr error // non-nil only if closed is true
// lastcols is only used in Scan, Next, and NextResultSet which are expected
- // not not be called concurrently.
+ // not to be called concurrently.
lastcols []driver.Value
}