]> Cypherpunks repositories - gostls13.git/commitdiff
database/sql/driver: fix typo in driver.go
authormstmdev <mstmdev@gmail.com>
Sat, 4 Jun 2022 19:32:04 +0000 (19:32 +0000)
committerGopher Robot <gobot@golang.org>
Sat, 4 Jun 2022 21:17:03 +0000 (21:17 +0000)
ExecerContext -> ExecContext
QueryerContext -> QueryContext

Change-Id: Id3b1f44de5aa47372d59696523b4379e1fbfc11c
GitHub-Last-Rev: 571d01f8052cef27bd5f91a5e95c0735ddf2e327
GitHub-Pull-Request: golang/go#53235
Reviewed-on: https://go-review.googlesource.com/c/go/+/410415
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>

src/database/sql/driver/driver.go

index 43fa579bda55d00213bf611440e711b827b77e0c..daf282bf74eefee64bf9a0d0bcc41ae00980a6de 100644 (file)
@@ -192,9 +192,9 @@ type Execer interface {
 // DB.Exec will first prepare a query, execute the statement, and then
 // close the statement.
 //
-// ExecerContext may return ErrSkip.
+// ExecContext may return ErrSkip.
 //
-// ExecerContext must honor the context timeout and return when the context is canceled.
+// ExecContext must honor the context timeout and return when the context is canceled.
 type ExecerContext interface {
        ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
 }
@@ -219,9 +219,9 @@ type Queryer interface {
 // DB.Query will first prepare a query, execute the statement, and then
 // close the statement.
 //
-// QueryerContext may return ErrSkip.
+// QueryContext may return ErrSkip.
 //
-// QueryerContext must honor the context timeout and return when the context is canceled.
+// QueryContext must honor the context timeout and return when the context is canceled.
 type QueryerContext interface {
        QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
 }