]> Cypherpunks repositories - gostls13.git/commitdiff
database/sql: add a missing period to end of sentence in Rows.Scan docs
authorBrad Fitzpatrick <bradfitz@golang.org>
Mon, 14 Nov 2022 17:04:38 +0000 (09:04 -0800)
committerGopher Robot <gobot@golang.org>
Mon, 14 Nov 2022 18:35:41 +0000 (18:35 +0000)
Change-Id: I331d4ff3e0f76a26c1c5ec41297117a5b1f16911
Reviewed-on: https://go-review.googlesource.com/c/go/+/450295
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Joedian Reid <joedian@golang.org>
src/database/sql/sql.go

index 3fbafd64f79f5beb424040474ab46471a4fe9e8d..ad17eb3da2c221b8e245459d03f5c164208cf806 100644 (file)
@@ -3228,7 +3228,7 @@ func rowsColumnInfoSetupConnLocked(rowsi driver.Rows) []*ColumnType {
 // select query will close any cursor *Rows if the parent *Rows is closed.
 //
 // If any of the first arguments implementing Scanner returns an error,
-// that error will be wrapped in the returned error
+// that error will be wrapped in the returned error.
 func (rs *Rows) Scan(dest ...any) error {
        rs.closemu.RLock()