Skip to content

Commit

Permalink
database/sql/driver: correct method name in comment
Browse files Browse the repository at this point in the history
Fixes #8061.

LGTM=crawshaw
R=golang-codereviews, crawshaw
CC=golang-codereviews
https://golang.org/cl/93520046
  • Loading branch information
ianlancetaylor committed May 21, 2014
1 parent 775719c commit 7d4cb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/database/sql/driver/driver.go
Expand Up @@ -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)
}
Expand Down

0 comments on commit 7d4cb4d

Please sign in to comment.