@@ -208,13 +208,13 @@ const (
208
208
SQLITE_UPDATE = C .SQLITE_UPDATE
209
209
)
210
210
211
- // SQLiteDriver implement sql .Driver.
211
+ // SQLiteDriver implements driver .Driver.
212
212
type SQLiteDriver struct {
213
213
Extensions []string
214
214
ConnectHook func (* SQLiteConn ) error
215
215
}
216
216
217
- // SQLiteConn implement sql .Conn.
217
+ // SQLiteConn implements driver .Conn.
218
218
type SQLiteConn struct {
219
219
mu sync.Mutex
220
220
db * C.sqlite3
@@ -224,12 +224,12 @@ type SQLiteConn struct {
224
224
aggregators []* aggInfo
225
225
}
226
226
227
- // SQLiteTx implemen sql .Tx.
227
+ // SQLiteTx implements driver .Tx.
228
228
type SQLiteTx struct {
229
229
c * SQLiteConn
230
230
}
231
231
232
- // SQLiteStmt implement sql .Stmt.
232
+ // SQLiteStmt implements driver .Stmt.
233
233
type SQLiteStmt struct {
234
234
mu sync.Mutex
235
235
c * SQLiteConn
@@ -239,13 +239,13 @@ type SQLiteStmt struct {
239
239
cls bool
240
240
}
241
241
242
- // SQLiteResult implement sql.Result.
242
+ // SQLiteResult implements sql.Result.
243
243
type SQLiteResult struct {
244
244
id int64
245
245
changes int64
246
246
}
247
247
248
- // SQLiteRows implement sql .Rows.
248
+ // SQLiteRows implements driver .Rows.
249
249
type SQLiteRows struct {
250
250
s * SQLiteStmt
251
251
nc int
0 commit comments