aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 61eeff7..59e3670 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -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:
@@ -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 {
@@ -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 {