aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrewMurrell <ImFromNASA@gmail.com>2018-08-21 20:43:37 -0400
committerAndrewMurrell <ImFromNASA@gmail.com>2018-08-21 20:46:58 -0400
commite20c81b8255fc08d18ed809338bddea2f174664c (patch)
tree56ad3fbab3e3636a074a0299382b7c03cced94ff
parentEnsure that SqliteStmt.closed property is guarded. (diff)
downloadgolite-e20c81b8255fc08d18ed809338bddea2f174664c.tar.gz
golite-e20c81b8255fc08d18ed809338bddea2f174664c.tar.xz
Update go doc comments to refer to correct interfaces.
sql.Driver, sql.Conn, sql.Tx sql.Stmt, and sql.Rows are not interfaces. Updated the comments to refer to the correct interfaces: driver.Driver, driver.Conn, driver.Tx, driver.Stmt, and driver.Rows.
-rw-r--r--sqlite3.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/sqlite3.go b/sqlite3.go
index b97647b..d8c5b8d 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -205,13 +205,13 @@ const (
SQLITE_UPDATE = C.SQLITE_UPDATE
)
-// SQLiteDriver implement sql.Driver.
+// SQLiteDriver implements driver.Driver.
type SQLiteDriver struct {
Extensions []string
ConnectHook func(*SQLiteConn) error
}
-// SQLiteConn implement sql.Conn.
+// SQLiteConn implements driver.Conn.
type SQLiteConn struct {
mu sync.Mutex
db *C.sqlite3
@@ -221,12 +221,12 @@ type SQLiteConn struct {
aggregators []*aggInfo
}
-// SQLiteTx implemen sql.Tx.
+// SQLiteTx implements driver.Tx.
type SQLiteTx struct {
c *SQLiteConn
}
-// SQLiteStmt implement sql.Stmt.
+// SQLiteStmt implements driver.Stmt.
type SQLiteStmt struct {
mu sync.Mutex
c *SQLiteConn
@@ -236,13 +236,13 @@ type SQLiteStmt struct {
cls bool
}
-// SQLiteResult implement sql.Result.
+// SQLiteResult implements sql.Result.
type SQLiteResult struct {
id int64
changes int64
}
-// SQLiteRows implement sql.Rows.
+// SQLiteRows implements driver.Rows.
type SQLiteRows struct {
s *SQLiteStmt
nc int