database/sql/driver: correct method name in comment

Fixes #8061.

LGTM=crawshaw
R=golang-codereviews, crawshaw
CC=golang-codereviews
https://golang.org/cl/93520046
This commit is contained in:
Ian Lance Taylor 2014-05-21 06:48:41 -07:00
parent 775719c600
commit 7d4cb4d63f

View File

@ -134,7 +134,7 @@ type Stmt interface {
// as an INSERT or UPDATE.
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.
Query(args []Value) (Rows, error)
}