database/sql: fix typo

Change-Id: I09fdcebb939417f18af09ed57f24460724cab64f
Reviewed-on: https://go-review.googlesource.com/36632
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Kevin Burke 2017-02-08 15:31:33 -08:00 committed by Ian Lance Taylor
parent 27520cc4c5
commit c57d91e34c
1 changed files with 1 additions and 1 deletions

View File

@ -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
}