Commit 7d4cb4d6 authored by Ian Lance Taylor's avatar Ian Lance Taylor

database/sql/driver: correct method name in comment

Fixes #8061.

LGTM=crawshaw
R=golang-codereviews, crawshaw
CC=golang-codereviews
https://golang.org/cl/93520046
parent 775719c6
...@@ -134,7 +134,7 @@ type Stmt interface { ...@@ -134,7 +134,7 @@ type Stmt interface {
// as an INSERT or UPDATE. // as an INSERT or UPDATE.
Exec(args []Value) (Result, error) Exec(args []Value) (Result, error)
// Exec executes a query that may return rows, such as a // Query executes a query that may return rows, such as a
// SELECT. // SELECT.
Query(args []Value) (Rows, error) Query(args []Value) (Rows, error)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment