diff options
author | = <=> | 2019-08-19 15:53:09 +0200 |
---|---|---|
committer | = <=> | 2019-08-19 15:53:09 +0200 |
commit | 85bf186e05f447c618cac5ebada6213ed4a66de0 (patch) | |
tree | 938a156f7f0a391da3bfbd6a94a8f75b77ed6aa2 | |
parent | Merge pull request #732 from mattn/sqlite-amalgamation-3290000 (diff) | |
download | golite-85bf186e05f447c618cac5ebada6213ed4a66de0.tar.gz golite-85bf186e05f447c618cac5ebada6213ed4a66de0.tar.xz |
Issue #651: Fix of typo
https://github.com/mattn/go-sqlite3/issues/651
-rw-r--r-- | sqlite3.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1867,7 +1867,7 @@ func (s *SQLiteStmt) query(ctx context.Context, args []namedValue) (driver.Rows, return rows, nil } -// LastInsertId teturn last inserted ID. +// LastInsertId return last inserted ID. func (r *SQLiteResult) LastInsertId() (int64, error) { return r.id, nil } |