File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -205,13 +205,13 @@ const (
205
205
SQLITE_UPDATE = C .SQLITE_UPDATE
206
206
)
207
207
208
- // SQLiteDriver implement sql .Driver.
208
+ // SQLiteDriver implements driver .Driver.
209
209
type SQLiteDriver struct {
210
210
Extensions []string
211
211
ConnectHook func (* SQLiteConn ) error
212
212
}
213
213
214
- // SQLiteConn implement sql .Conn.
214
+ // SQLiteConn implements driver .Conn.
215
215
type SQLiteConn struct {
216
216
mu sync.Mutex
217
217
db * C.sqlite3
@@ -221,12 +221,12 @@ type SQLiteConn struct {
221
221
aggregators []* aggInfo
222
222
}
223
223
224
- // SQLiteTx implemen sql .Tx.
224
+ // SQLiteTx implements driver .Tx.
225
225
type SQLiteTx struct {
226
226
c * SQLiteConn
227
227
}
228
228
229
- // SQLiteStmt implement sql .Stmt.
229
+ // SQLiteStmt implements driver .Stmt.
230
230
type SQLiteStmt struct {
231
231
mu sync.Mutex
232
232
c * SQLiteConn
@@ -236,13 +236,13 @@ type SQLiteStmt struct {
236
236
cls bool
237
237
}
238
238
239
- // SQLiteResult implement sql.Result.
239
+ // SQLiteResult implements sql.Result.
240
240
type SQLiteResult struct {
241
241
id int64
242
242
changes int64
243
243
}
244
244
245
- // SQLiteRows implement sql .Rows.
245
+ // SQLiteRows implements driver .Rows.
246
246
type SQLiteRows struct {
247
247
s * SQLiteStmt
248
248
nc int
You can’t perform that action at this time.
0 commit comments