aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2019-08-20 00:43:38 +0900
committerGitHub <noreply@github.com>2019-08-20 00:43:38 +0900
commitf4ce3be229889df39cb9d159d5ccaec83857a9bb (patch)
tree938a156f7f0a391da3bfbd6a94a8f75b77ed6aa2
parentMerge pull request #732 from mattn/sqlite-amalgamation-3290000 (diff)
parentIssue #651: Fix of typo (diff)
downloadgolite-f4ce3be229889df39cb9d159d5ccaec83857a9bb.tar.gz
golite-f4ce3be229889df39cb9d159d5ccaec83857a9bb.tar.xz
Merge pull request #735 from mahler/master
Issue #651: Fix of typo
-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
}