Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 43e89c9

Browse files
authored
Merge pull request #1 from mattn/master
merge upstream
2 parents 88abdaa + 3198c77 commit 43e89c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

‎sqlite3.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ const (
208208
SQLITE_UPDATE = C.SQLITE_UPDATE
209209
)
210210

211-
// SQLiteDriver implement sql.Driver.
211+
// SQLiteDriver implements driver.Driver.
212212
type SQLiteDriver struct {
213213
Extensions []string
214214
ConnectHook func(*SQLiteConn) error
215215
}
216216

217-
// SQLiteConn implement sql.Conn.
217+
// SQLiteConn implements driver.Conn.
218218
type SQLiteConn struct {
219219
mu sync.Mutex
220220
db *C.sqlite3
@@ -224,12 +224,12 @@ type SQLiteConn struct {
224224
aggregators []*aggInfo
225225
}
226226

227-
// SQLiteTx implemen sql.Tx.
227+
// SQLiteTx implements driver.Tx.
228228
type SQLiteTx struct {
229229
c *SQLiteConn
230230
}
231231

232-
// SQLiteStmt implement sql.Stmt.
232+
// SQLiteStmt implements driver.Stmt.
233233
type SQLiteStmt struct {
234234
mu sync.Mutex
235235
c *SQLiteConn
@@ -239,13 +239,13 @@ type SQLiteStmt struct {
239239
cls bool
240240
}
241241

242-
// SQLiteResult implement sql.Result.
242+
// SQLiteResult implements sql.Result.
243243
type SQLiteResult struct {
244244
id int64
245245
changes int64
246246
}
247247

248-
// SQLiteRows implement sql.Rows.
248+
// SQLiteRows implements driver.Rows.
249249
type SQLiteRows struct {
250250
s *SQLiteStmt
251251
nc int

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /