]> Cypherpunks repositories - gostls13.git/commitdiff
database/sql: fix typo
authorKevin Burke <kev@inburke.com>
Wed, 8 Feb 2017 23:31:33 +0000 (15:31 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 9 Feb 2017 01:08:08 +0000 (01:08 +0000)
Change-Id: I09fdcebb939417f18af09ed57f24460724cab64f
Reviewed-on: https://go-review.googlesource.com/36632
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/database/sql/sql.go

index 57d4782c8911f8e2e40a096f7fa9d11578686c19..ce8bb7c92882e51b6e4870a75b1a1b6921d11223 100644 (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
 }