]> Cypherpunks repositories - gostls13.git/commitdiff
database/sql: fix comment grammar
authorAndrei Matei <andrei@cockroachlabs.com>
Mon, 4 Mar 2019 00:44:58 +0000 (00:44 +0000)
committerEmmanuel Odeke <emm.odeke@gmail.com>
Thu, 7 Mar 2019 05:19:01 +0000 (05:19 +0000)
Change-Id: I92d8c93967c5ec57f07151affd0041f00e405057
GitHub-Last-Rev: 2dea977d938a504604aed6a9ae87986001f96acd
GitHub-Pull-Request: golang/go#30551
Reviewed-on: https://go-review.googlesource.com/c/go/+/164970
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/database/sql/driver/driver.go

index ecc6547bf371221cf9ebb0c4f1963602ea29f076..316e7cea3754173a510871219976de9fc6c4d052 100644 (file)
@@ -26,7 +26,7 @@ import (
 //   time.Time
 //
 // If the driver supports cursors, a returned Value may also implement the Rows interface
-// in this package. This is used when, for example, when a user selects a cursor
+// in this package. This is used, for example, when a user selects a cursor
 // such as "select cursor(select * from my_table) from dual". If the Rows
 // from the select is closed, the cursor Rows will also be closed.
 type Value interface{}