Skip to content

Commit

Permalink
fix typo in doc comment (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
rittneje authored and mattn committed Dec 17, 2019
1 parent b4f5cc7 commit 53cff3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sqlite3.go
Expand Up @@ -913,7 +913,7 @@ func (c *SQLiteConn) begin(ctx context.Context) (driver.Tx, error) {
// - rwc
// - memory
//
// shared
// cache
// SQLite Shared-Cache Mode
// https://www.sqlite.org/sharedcache.html
// Values:
Expand Down Expand Up @@ -1910,7 +1910,7 @@ func (s *SQLiteStmt) exec(ctx context.Context, args []namedValue) (driver.Result
resultCh <- result{r, err}
}()
select {
case rv := <- resultCh:
case rv := <-resultCh:
return rv.r, rv.err
case <-ctx.Done():
select {
Expand Down Expand Up @@ -2011,7 +2011,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error {
resultCh <- rc.nextSyncLocked(dest)
}()
select {
case err := <- resultCh:
case err := <-resultCh:
return err
case <-rc.ctx.Done():
select {
Expand Down

0 comments on commit 53cff3f

Please sign in to comment.