aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
author= <=>2019-08-19 15:53:09 +0200
committer= <=>2019-08-19 15:53:09 +0200
commit85bf186e05f447c618cac5ebada6213ed4a66de0 (patch)
tree938a156f7f0a391da3bfbd6a94a8f75b77ed6aa2 /sqlite3.go
parentMerge pull request #732 from mattn/sqlite-amalgamation-3290000 (diff)
downloadgolite-85bf186e05f447c618cac5ebada6213ed4a66de0.tar.gz
golite-85bf186e05f447c618cac5ebada6213ed4a66de0.tar.xz
Issue #651: Fix of typo
https://github.com/mattn/go-sqlite3/issues/651
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 9e9e91a..5ef56ad 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -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
}