From 85bf186e05f447c618cac5ebada6213ed4a66de0 Mon Sep 17 00:00:00 2001 From: = <=> Date: Mon, 19 Aug 2019 15:53:09 +0200 Subject: [PATCH] Issue #651: Fix of typo https://github.com/mattn/go-sqlite3/issues/651 --- sqlite3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }